public static RasterImage ChangeFromWmf( IntPtr hwmf, int width, int height, RasterColor backColor )
'Declaration Public Overloads Shared Function ChangeFromWmf( _ ByVal hwmf As IntPtr, _ ByVal width As Integer, _ ByVal height As Integer, _ ByVal backColor As RasterColor _ ) As RasterImage
'Usage Dim hwmf As IntPtr Dim width As Integer Dim height As Integer Dim backColor As RasterColor Dim value As RasterImage value = RasterImageConverter.ChangeFromWmf(hwmf, width, height, backColor)
public static RasterImage ChangeFromWmf( IntPtr hwmf, int width, int height, RasterColor backColor )
function Leadtools.Drawing.RasterImageConverter.ChangeFromWmf(IntPtr,Int32,Int32,RasterColor)( hwmf , width , height , backColor )
public: static RasterImage^ ChangeFromWmf( IntPtr hwmf, int width, int height, RasterColor backColor )
Some metafiles do not have a background color, and hence, when the metafile is used to create a Leadtools.RasterImage object, the area not covered by the metafile objects will contain the default image background color (black). To create a raster image from a metafile like this with a specific background color, set the desired background color in the backColor parameter.
Some metafiles do not have a background color, and hence, when the metafile is used to create a Leadtools.RasterImage object, the area not covered by the metafile objects will contain the default image background color (black). To create a raster image from a metafile like this with a specific background color, use ChangeFromWmf(hemf, width, height, backColor).
If this method is successful, hwmf is freed.
The metafile can be loaded at the original dimension or scaled by using the width and height parameters.
If width == 0 and height == 0 - the metafile is loaded at the size present in the file.
If width == 0 and height > 0 - the metafile is stretched so that it has the height height (preserving the aspect ratio).
If width > 0 and height == 0 - the metafile is stretched so that it has the width width (preserving the aspect ratio).
If width > 0 and height > 0 - the metafile is stretched so that it has the width width and height height (the aspect ratio is ignored).
This method does not support signed images.
For more information refer to RasterImage and GDI/GDI+.
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2