ImageSaveOptions constructor

init

Initializes a new instance of the ImageSaveOptions class with default values for flags SuppressErrors (true) and Debug (false).

def __init__(self):
    ...

init

Initializes a new instance of the ImageSaveOptions with with specified image format.

def __init__(self, image_format):
    ...
ParameterTypeDescription
image_formataspose.page.drawing.imaging.ImageFormatThe format of the image.

init

Initializes a new instance of the ImageSaveOptions with with specified size of the image.

def __init__(self, size):
    ...
ParameterTypeDescription
sizeaspose.page.drawing.SizeThe image size.

init

Initializes a new instance of the ImageSaveOptions with default value for flag Debug (false).

def __init__(self, supress_errors):
    ...
ParameterTypeDescription
supress_errorsboolSpecifies whether errors must be suppressed or not.
If true suppressed errors are added to Exceptions list.

init

Initializes a new instance of the ImageSaveOptions with with specified size of the image and image format.

def __init__(self, size, image_format):
    ...
ParameterTypeDescription
sizeaspose.page.drawing.SizeThe image size.
image_formataspose.page.drawing.imaging.ImageFormatThe format of the image.

init

Initializes a new instance of the ImageSaveOptions with with specified image format.

def __init__(self, image_format, supress_errors):
    ...
ParameterTypeDescription
image_formataspose.page.drawing.imaging.ImageFormatThe format of the image.
supress_errorsboolSpecifies whether errors must be suppressed or not.
If true suppressed errors are added to Exceptions list.

init

Initializes a new instance of the ImageSaveOptions with with specified size.

def __init__(self, size, supress_errors):
    ...
ParameterTypeDescription
sizeaspose.page.drawing.SizeThe image size.
supress_errorsboolSpecifies whether errors must be suppressed or not.
If true suppressed errors are added to Exceptions list.

init

Initializes a new instance of the ImageSaveOptions with with specified size of the image and image format.

def __init__(self, size, image_format, supress_errors):
    ...
ParameterTypeDescription
sizeaspose.page.drawing.SizeThe image size.
image_formataspose.page.drawing.imaging.ImageFormatThe format of the image.
supress_errorsboolSpecifies whether errors must be suppressed or not.
If true suppressed errors are added to Exceptions list.

See Also