Creates a thumbnail.

Namespace: MonoSoftware.MonoX.Utilities
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static Image CreateThumbnail(
	string filePath,
	int maxSize
)
Visual Basic
Public Shared Function CreateThumbnail ( 
	filePath As String,
	maxSize As Integer
) As Image
Visual C++
public:
static Image^ CreateThumbnail(
	String^ filePath, 
	int maxSize
)
F#
static member CreateThumbnail : 
        filePath : string * 
        maxSize : int -> Image 

Parameters

filePath
Type: System..::..String
Complete image file system path.
maxSize
Type: System..::..Int32
Max image size.

Return Value

Type: Image
Image thumbnail.

See Also