JpegDevice.JpegDevice

JpegDevice()

Initializes a new instance of the JpegDevice class with default resolution and maximum quality.

public JpegDevice()

See Also


JpegDevice(Resolution)

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

public JpegDevice(Resolution resolution)

See Also


JpegDevice(int)

Initializes a new instance of the JpegDevice class.

public JpegDevice(int quality)
ParameterTypeDescription
qualityInt32Specifies the level of compression for an image. The range of useful values for the quality is from 0 to 100. The lower the number specified, the higher the compression and therefore the lower the quality of the image. Zero would give you the lowest quality image and 100 the highest.

See Also


JpegDevice(Resolution, int)

Initializes a new instance of the JpegDevice class.

public JpegDevice(Resolution resolution, int quality)
ParameterTypeDescription
resolutionResolutionResolution for the result image file, see Resolution class.
qualityInt32Specifies the level of compression for an image. The range of useful values for the quality is from 0 to 100. The lower the number specified, the higher the compression and therefore the lower the quality of the image. Zero would give you the lowest quality image and 100 the highest.

See Also


JpegDevice(int, int)

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

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

See Also


JpegDevice(PageSize)

Initializes a new instance of the JpegDevice class with provided page size, default resolution (=150) and maximum quality.

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

See Also


JpegDevice(int, int, Resolution)

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

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

See Also


JpegDevice(PageSize, Resolution)

Initializes a new instance of the JpegDevice class with provided page size, resolution and maximum quality.

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

See Also


JpegDevice(int, int, Resolution, int)

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

public JpegDevice(int width, int height, Resolution resolution, int quality)
ParameterTypeDescription
widthInt32Image output width.
heightInt32Image output height.
resolutionResolutionResolution for the result image file, see Resolution class.
qualityInt32Specifies the level of compression for an image. The range of useful values for the quality is from 0 to 100. The lower the number specified, the higher the compression and therefore the lower the quality of the image. Zero would give you the lowest quality image and 100 the highest.

See Also


JpegDevice(PageSize, Resolution, int)

Initializes a new instance of the JpegDevice class with provided page size, resolution and quality.

public JpegDevice(PageSize pageSize, Resolution resolution, int quality)
ParameterTypeDescription
pageSizePageSizePage size of the output image.
resolutionResolutionResolution for the result image file, see Resolution class.
qualityInt32Specifies the level of compression for an image. The range of useful values for the quality is from 0 to 100. The lower the number specified, the higher the compression and therefore the lower the quality of the image. Zero would give you the lowest quality image and 100 the highest.

See Also