This documentation is for the old version. Go to the latest Graphics Mill docs

Frame.GetThumbnail Method

Returns thumbnail of the bitmap stored in this frame.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Overridable Sub GetThumbnail ( _
	bitmap As Bitmap, _
	width As Integer, _
	height As Integer _
)
C#
public virtual void GetThumbnail(
	Bitmap bitmap,
	int width,
	int height
)

Parameters

bitmap

Type: Aurigma.GraphicsMill.Bitmap

Bitmap class instance containing thumbnail stored in the frame.
width

Type: System.Int32

Thumbnail width (in pixels). If this value is set to 0, it is calculated automatically to preserve bitmap aspect ratio. Both width and height cannot be set to 0 at the same time.
height

Type: System.Int32

Thumbnail height (in pixels). If this value is set to 0, it is calculated automatically to preserve bitmap aspect ratio. Both width and height cannot be set to 0 at the same time.

See Also

Reference