Returns a thumbnail for this FreeImageBitmap.

Namespace:  FreeImageAPI
Assembly:  FreeImageNET (in FreeImageNET.dll)

Syntax

C#
public FreeImageBitmap GetThumbnailImage(
	int thumbWidth,
	int thumbHeight,
	Image..::.GetThumbnailImageAbort callback,
	IntPtr callBackData
)
Visual Basic (Declaration)
Public Function GetThumbnailImage ( _
	thumbWidth As Integer, _
	thumbHeight As Integer, _
	callback As Image..::.GetThumbnailImageAbort, _
	callBackData As IntPtr _
) As FreeImageBitmap
Visual C++
public:
FreeImageBitmap^ GetThumbnailImage(
	int thumbWidth, 
	int thumbHeight, 
	Image..::.GetThumbnailImageAbort^ callback, 
	IntPtr callBackData
)

Parameters

thumbWidth
Type: System..::.Int32
The width, in pixels, of the requested thumbnail image.
thumbHeight
Type: System..::.Int32
The height, in pixels, of the requested thumbnail image.
callback
Type: System.Drawing..::.Image..::.GetThumbnailImageAbort
Ignored.
callBackData
Type: System..::.IntPtr
Ignored.

Return Value

A FreeImageBitmap that represents the thumbnail.

Version Information

FreeImage.NET

Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1

See Also