MetafileExtensionsToBitmap(Metafile, Size, 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 = false
)
<ExtensionAttribute>
Public Shared Function ToBitmap (
metafile As Metafile,
requestedSize As Size,
Optional antiAliased As Boolean = false
) As Bitmap
public:
[ExtensionAttribute]
static Bitmap^ ToBitmap(
Metafile^ metafile,
Size requestedSize,
bool antiAliased = false
)
[<ExtensionAttribute>]
static member ToBitmap :
metafile : Metafile *
requestedSize : Size *
?antiAliased : bool
(* Defaults:
let _antiAliased = defaultArg antiAliased false
*)
-> Bitmap
- 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: .
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).