MetafileExtensionsToBitmap(Metafile, Size, Boolean, Boolean) Method

Creates a Bitmap of a Metafile instance specified in the metafile parameter.

Definition

Namespace: KGySoft.Drawing
Assembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 8.1.0
C#
public static Bitmap ToBitmap(
	this Metafile metafile,
	Size requestedSize,
	bool antiAliased,
	bool keepAspectRatio
)

Parameters

metafile  Metafile
The Metafile to convert.
requestedSize  Size
The requested size of the result Bitmap.
antiAliased  Boolean
to create an anti-aliased result; otherwise, .
keepAspectRatio  Boolean
to keep aspect ratio of the source metafile; otherwise, .

Return Value

Bitmap
A Bitmap instance of the requested size.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Metafile. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also