MetafileExtensionsToBitmap(Metafile, Size, Boolean, Boolean) Method
Creates a
Bitmap of a
Metafile instance specified in the
metafile parameter.
Namespace: KGySoft.DrawingAssembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 8.1.0
public static Bitmap ToBitmap(
this Metafile metafile,
Size requestedSize,
bool antiAliased,
bool keepAspectRatio
)
<ExtensionAttribute>
Public Shared Function ToBitmap (
metafile As Metafile,
requestedSize As Size,
antiAliased As Boolean,
keepAspectRatio As Boolean
) As Bitmap
public:
[ExtensionAttribute]
static Bitmap^ ToBitmap(
Metafile^ metafile,
Size requestedSize,
bool antiAliased,
bool keepAspectRatio
)
[<ExtensionAttribute>]
static member ToBitmap :
metafile : Metafile *
requestedSize : Size *
antiAliased : bool *
keepAspectRatio : bool -> Bitmap
- 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, .
BitmapA
Bitmap instance of the requested size.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).