PsConverterToImageOptions constructor

init

Initializes new instance of the PsConverterToImageOptions object with default options.

def __init__(self):
    ...

init

Initializes new instance of the PsConverterToImageOptions object with image format.

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

init

Initializes new instance of the PsConverterToImageOptions object with a size of the resulting image.

def __init__(self, size):
    ...
ParameterTypeDescription
sizeaspose.page.drawing.SizeA size the resulting image.

init

Initializes new instance of the PsConverterToImageOptions object with image format and a size of the resulting image.

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

See Also