GifDevice.GifDevice

GifDevice()

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

public GifDevice()

See Also


GifDevice(Resolution)

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

public GifDevice(Resolution resolution)

See Also


GifDevice(int, int, Resolution)

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

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

See Also


GifDevice(PageSize, Resolution)

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

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

See Also


GifDevice(int, int)

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

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

See Also


GifDevice(PageSize)

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

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

See Also