BmpDevice.BmpDevice

BmpDevice()

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

public BmpDevice()

See Also


BmpDevice(Resolution)

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

public BmpDevice(Resolution resolution)

See Also


BmpDevice(int, int, Resolution)

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

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

See Also


BmpDevice(PageSize, Resolution)

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

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

See Also


BmpDevice(int, int)

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

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

See Also


BmpDevice(PageSize)

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

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

See Also