EmfDevice.EmfDevice

EmfDevice()

Initializes a new instance of the EmfDevice class with default resolution of raster image written to emf.

public EmfDevice()

See Also


EmfDevice(Resolution)

Initializes a new instance of the EmfDevice class. Resolution for the raster image written to emf, see Resolution class.

public EmfDevice(Resolution resolution)

See Also


EmfDevice(int, int)

Initializes a new instance of the EmfDevice class with provided image dimensions, and default resolution for the raster image written to emf (=150)

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

See Also


EmfDevice(PageSize)

Initializes a new instance of the EmfDevice class with provided page size, and default resolution for the raster image written to emf (=150)

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

See Also


EmfDevice(int, int, Resolution)

Initializes a new instance of the JpegDevice class with provided image dimensions, and resolution for the raster image written to emf.

public EmfDevice(int width, int height, Resolution resolution)
ParameterTypeDescription
widthInt32Image output width.
heightInt32Image output height.
resolutionResolutionResolution for the for the raster image written to emf, see Resolution class.

See Also


EmfDevice(PageSize, Resolution)

Initializes a new instance of the JpegDevice class with provided page size, and resolution for the raster image written to emf.

public EmfDevice(PageSize pageSize, Resolution resolution)
ParameterTypeDescription
pageSizePageSizePage size of the output image.
resolutionResolutionResolution for the for the raster image written to emf, see Resolution class.

See Also