GetImage

GetImage(float, float)

Returns an image object with custom scaling.

public IImage GetImage(float scaleX, float scaleY)
ParameterTypeDescription
scaleXSingleThe value by which to scale this Thumbnail in the x-axis direction.
scaleYSingleThe value by which to scale this Thumbnail in the y-axis direction.

Return Value

Image object Bitmap

See Also


GetImage()

Returns a Thumbnail Image object (20% of real size).

public IImage GetImage()

Return Value

Image object Bitmap

See Also


GetImage(Size)

Returns an image object with specified size.

public IImage GetImage(Size imageSize)
ParameterTypeDescription
imageSizeSizeSize of the image to create.

Return Value

Bitmap object.

See Also


GetImage(ITiffOptions)

Returns a Thumbnail tiff bitmap object with specified parameters.

public IImage GetImage(ITiffOptions options)
ParameterTypeDescription
optionsITiffOptionsTiff options.

Return Value

Image object.

See Also


GetImage(IRenderingOptions)

Returns a Thumbnail Bitmap object.

public IImage GetImage(IRenderingOptions options)
ParameterTypeDescription
optionsIRenderingOptionsRendering options.

Return Value

Bitmap objects.

See Also


GetImage(IRenderingOptions, float, float)

Returns a Thumbnail Bitmap object with custom scaling.

public IImage GetImage(IRenderingOptions options, float scaleX, float scaleY)
ParameterTypeDescription
optionsIRenderingOptionsRendering options.
scaleXSingleThe value by which to scale this Thumbnail in the x-axis direction.
scaleYSingleThe value by which to scale this Thumbnail in the y-axis direction.

Return Value

Bitmap objects.

See Also


GetImage(IRenderingOptions, Size)

Returns a Thumbnail Bitmap object with specified size.

public IImage GetImage(IRenderingOptions options, Size imageSize)
ParameterTypeDescription
optionsIRenderingOptionsRendering options.
imageSizeSizeSize of the image to create.

Return Value

Bitmap objects.

See Also