Class ImageSaveOptions
Namespace: Aspose.Page.EPS.Device
Assembly: Aspose.Page.dll (25.1.2)
This class contains options necessary for managing image saving process.
public class ImageSaveOptions : SaveOptions
Inheritance
object ← SaveOptions ← ImageSaveOptions
Inherited Members
SaveOptions.SupressErrors, SaveOptions.Size, SaveOptions.Exceptions, SaveOptions.Debug, SaveOptions.AdditionalFontsFolders, SaveOptions.JpegQualityLevel, object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Constructors
ImageSaveOptions()
Initializes a new instance of the Aspose.Page.EPS.Device.ImageSaveOptions class with default values for flags SuppressErrors (true) and System.Diagnostics.Debug (false).
public ImageSaveOptions()
ImageSaveOptions(ImageFormat)
Initializes a new instance of the Aspose.Page.EPS.Device.ImageSaveOptions with with specified image format.
public ImageSaveOptions(ImageFormat imageFormat)
Parameters
imageFormat
ImageFormat
The format of the image.
ImageSaveOptions(Size)
Initializes a new instance of the Aspose.Page.EPS.Device.ImageSaveOptions with with specified size of the image.
public ImageSaveOptions(Size size)
Parameters
size
Size
The image size.
ImageSaveOptions(Size, ImageFormat)
Initializes a new instance of the Aspose.Page.EPS.Device.ImageSaveOptions with with specified size of the image and image format.
public ImageSaveOptions(Size size, ImageFormat imageFormat)
Parameters
size
Size
The image size.
imageFormat
ImageFormat
The format of the image.
ImageSaveOptions(ImageFormat, bool)
Initializes a new instance of the Aspose.Page.EPS.Device.ImageSaveOptions with with specified image format.
public ImageSaveOptions(ImageFormat imageFormat, bool supressErrors)
Parameters
imageFormat
ImageFormat
The format of the image.
supressErrors
bool
Specifies whether errors must be suppressed or not. If true suppressed errors are added to Exceptions list.
ImageSaveOptions(Size, bool)
Initializes a new instance of the Aspose.Page.EPS.Device.ImageSaveOptions with with specified size.
public ImageSaveOptions(Size size, bool supressErrors)
Parameters
size
Size
The image size.
supressErrors
bool
Specifies whether errors must be suppressed or not. If true suppressed errors are added to Exceptions list.
ImageSaveOptions(Size, ImageFormat, bool)
Initializes a new instance of the Aspose.Page.EPS.Device.ImageSaveOptions with with specified size of the image and image format.
public ImageSaveOptions(Size size, ImageFormat imageFormat, bool supressErrors)
Parameters
size
Size
The image size.
imageFormat
ImageFormat
The format of the image.
supressErrors
bool
Specifies whether errors must be suppressed or not. If true suppressed errors are added to Exceptions list.
ImageSaveOptions(bool)
Initializes a new instance of the Aspose.Page.EPS.Device.ImageSaveOptions with default value for flag System.Diagnostics.Debug (false).
public ImageSaveOptions(bool supressErrors)
Parameters
supressErrors
bool
Specifies whether errors must be suppressed or not. If true suppressed errors are added to Exceptions list.
Properties
ImageFormat
Gets/sets an image format for resulting image.
public ImageFormat ImageFormat { get; set; }
Property Value
Resolution
Gets/sets the image resolution.
public float Resolution { get; set; }
Property Value
SmoothingMode
Gets/sets the smoothing mode for rendering image.
public SmoothingMode? SmoothingMode { get; set; }
Property Value
TryJoinImageFragments
The flag for combining image fragments into one picture.
public bool TryJoinImageFragments { get; set; }