FileCreateSource Class |
Namespace: Aspose.PSD.Sources
The FileCreateSource type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | FileCreateSource(String) |
Initializes a new instance of the FileCreateSource class.
|
![]() ![]() | FileCreateSource(String, Boolean) |
Initializes a new instance of the FileCreateSource class.
|
Name | Description | |
---|---|---|
![]() | FilePath |
Gets the file path to create.
|
![]() | IsTemporal |
Gets a value indicating whether file will be temporal.
(Overrides FileSourceIsTemporal.) |
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetStreamContainer |
Gets the stream container.
(Overrides SourceGetStreamContainer.) |
![]() | GetType | (Inherited from Object.) |
![]() | ToString | (Inherited from Object.) |
[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); }