FileCreateSource Class
Represents a file source for creation.
Inheritance Hierarchy
SystemObject
  Aspose.PSDSource
    Aspose.PSD.SourcesFileSource
      Aspose.PSD.SourcesFileCreateSource

Namespace: Aspose.PSD.Sources
Assembly: Aspose.PSD (in Aspose.PSD.dll) Version: 23.4
Syntax
public sealed class FileCreateSource : FileSource

The FileCreateSource type exposes the following members.

Constructors
  NameDescription
Public methodCode exampleFileCreateSource(String)
Initializes a new instance of the FileCreateSource class.
Public methodCode exampleFileCreateSource(String, Boolean)
Initializes a new instance of the FileCreateSource class.
Properties
  NameDescription
Public propertyFilePath
Gets the file path to create.
Public propertyIsTemporal
Gets a value indicating whether file will be temporal.
(Overrides FileSourceIsTemporal.)
Methods
  NameDescription
Public methodEquals (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetStreamContainer
Gets the stream container.
(Overrides SourceGetStreamContainer.)
Public methodGetType (Inherited from Object.)
Public methodToString (Inherited from Object.)
Examples
This example demonstrates the use of Font and SolidBrush class to draw strings on Image surface. The example creates a new Image and draw shapes using Figures and GraphicsPath
[C#]

//Creates an instance of Image
using (Aspose.PSD.Image image = new Aspose.PSD.FileFormats.Psd.PsdImage(500, 500))
{
    //Creates and initialize an instance of Graphics class
    Aspose.PSD.Graphics graphics = new Aspose.PSD.Graphics(image);

    //Clears Graphics surface
    graphics.Clear(Color.Wheat);

    //Creates an instance of Font
    Aspose.PSD.Font font = new Aspose.PSD.Font("Times New Roman", 16);

    //Create an instance of SolidBrush having Red Color
    Aspose.PSD.Brushes.SolidBrush brush = new Aspose.PSD.Brushes.SolidBrush(Color.Red);

    //Draw a String
    graphics.DrawString("Created by Aspose.PSD for .Net", font, brush, new PointF(100, 100));

    // create export options.
    Aspose.PSD.ImageOptions.GifOptions options = new Aspose.PSD.ImageOptions.GifOptions();

    // save all changes
    image.Save("C:\\temp\\output.gif", options);
}
See Also