MetafileExtensionsToBitmap(Metafile, Size, 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 = false
)

Parameters

metafile  Metafile
The Metafile to convert.
requestedSize  Size
The requested size of the result Bitmap. This overload does not maintain aspect ratio.
antiAliased  Boolean  (Optional)
to create an anti-aliased result; otherwise, . This parameter is optional.
Default value: .

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