ImageDevice.ImageDevice

ImageDevice()

Abstract initializer for ImageDevice descendants, set resolution to 150x150.

public ImageDevice()

See Also


ImageDevice(Resolution)

Abstract initializer for ImageDevice descendants. Resolution for the result image file, see Resolution class.

public ImageDevice(Resolution resolution)

See Also


ImageDevice(int, int)

Initializes a new instance of the JpegDevice class with provided image dimensions and default resolution (=150).

public ImageDevice(int width, int height)
ParameterTypeDescription
widthInt32Image output width.
heightInt32Image output height.

See Also


ImageDevice(PageSize)

Initializes a new instance of the JpegDevice class with provided image dimensions and default resolution (=150).

public ImageDevice(PageSize pageSize)
ParameterTypeDescription
pageSizePageSizePage size of the output image.

See Also


ImageDevice(int, int, Resolution)

Initializes a new instance of the JpegDevice class with provided image dimensions and resolution.

public ImageDevice(int width, int height, Resolution resolution)
ParameterTypeDescription
widthInt32Image output width.
heightInt32Image output height.
resolutionResolutionResolution for the result image file, see Resolution class.

See Also


ImageDevice(PageSize, Resolution)

Initializes a new instance of the JpegDevice class with provided image dimensions and resolution.

public ImageDevice(PageSize pageSize, Resolution resolution)
ParameterTypeDescription
pageSizePageSizePage size of the output image.
resolutionResolutionResolution for the result image file, see Resolution class.

See Also