Aspose::Page::SaveOptions class

SaveOptions class

This class contains options necessary for managing conversion process.

class SaveOptions : public virtual System::Object

Methods

MethodDescription
get_AdditionalFontsFolders() constSpecifies additional folders where converter should find fonts for input document. Default folder are standard fonts folder where OS finds fonts for internal needs.
virtual get_Debug()Specifies whether debug information must be printed to standard output stream or not.
virtual get_Exceptions()Returns a list of suppressed conversion errors If SuppressErrors is true.
get_JpegQualityLevel() constThe Quality category specifies the level of compression for an image. Available values are 0 to 100. The lower the number specified, the higher the compression and therefore the lower the quality of the image. 0 value results in lowest quality image, while 100 results in highest.
get_Size() constGets/sets the size of the image.
virtual get_SupressErrors()Specifies whether errors must be suppressed or not. If true suppressed errors are added to Exceptions list. If false the first error will terminate the program.
SaveOptions()Initializes a new instance of the SaveOptions class with default values for flags SuppressErrors (true) and Debug (false).
SaveOptions(bool)Initializes a new instance of the SaveOptions class with default value for flag Debug (false).
SaveOptions(Aspose::Page::Drawing::Size)Initializes a new instance of the SaveOptions with with specified size of the page.
SaveOptions(bool, Aspose::Page::Drawing::Size)Initializes a new instance of the SaveOptions class with default value for flag Debug (false) and with specified size of the page.
set_AdditionalFontsFolders(System::ArrayPtr<System::String>)Specifies additional folders where converter should find fonts for input document. Default folder are standard fonts folder where OS finds fonts for internal needs.
virtual set_Debug(bool)Specifies whether debug information must be printed to standard output stream or not.
set_JpegQualityLevel(int32_t)The Quality category specifies the level of compression for an image. Available values are 0 to 100. The lower the number specified, the higher the compression and therefore the lower the quality of the image. 0 value results in lowest quality image, while 100 results in highest.
set_Size(Aspose::Page::Drawing::Size)Gets/sets the size of the image.
virtual set_SupressErrors(bool)Specifies whether errors must be suppressed or not. If true suppressed errors are added to Exceptions list. If false the first error will terminate the program.

See Also