ImageDevice constructor

init

Initializes new instance of ImageDevice.

def __init__(self):
    ...

init

Initializes new instance of ImageDevice with specified size of a page.

def __init__(self, size):
    ...
ParameterTypeDescription
sizeaspose.pydrawing.SizePage size.

init

Initializes new instance of ImageDevice with specified image format.

def __init__(self, image_format):
    ...
ParameterTypeDescription
image_formataspose.pydrawing.imaging.ImageFormatFormat of the image.

init

Initializes new instance of ImageDevice with specified size of a page and image format.

def __init__(self, size, image_format):
    ...
ParameterTypeDescription
sizeaspose.pydrawing.SizePage size.
image_formataspose.pydrawing.imaging.ImageFormatFormat of the image.

See Also