PngDevice.PngDevice

PngDevice()

Initializes a new instance of the PngDevice class with default resolution.

public PngDevice()

See Also


PngDevice(Resolution)

Initializes a new instance of the PngDevice class. Resolution for the result image file, see Resolution class.

public PngDevice(Resolution resolution)

See Also


PngDevice(int, int, Resolution)

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

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

See Also


PngDevice(PageSize, Resolution)

Initializes a new instance of the PngDevice class with provided page size and resolution.

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

See Also


PngDevice(int, int)

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

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

See Also


PngDevice(PageSize)

Initializes a new instance of the PngDevice class with provided page size, default resolution (=150).

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

See Also