LEADTOOLS GDI/GDI+ (Leadtools.Drawing assembly)
LEAD Technologies, Inc

ChangeFromEmf(IntPtr,Int32,Int32,RasterColor) Method






Handle to the EMF to be changed.
Amount by which to scale the enhanced metafile's original width.
Amount by which to scale the enhanced metafile's original height.
The color to use to fill the image area before painting the metafile objects.
Changes a Windows Enhanced Metafile (EMF) into a LEADTOOLS Leadtools.RasterImage object and, if successful, frees the Enhanced Metafile.
Syntax
public static RasterImage ChangeFromEmf( 
   IntPtr hemf,
   int width,
   int height,
   RasterColor backColor
)
'Declaration
 
Public Overloads Shared Function ChangeFromEmf( _
   ByVal hemf As IntPtr, _
   ByVal width As Integer, _
   ByVal height As Integer, _
   ByVal backColor As RasterColor _
) As RasterImage
'Usage
 
Dim hemf As IntPtr
Dim width As Integer
Dim height As Integer
Dim backColor As RasterColor
Dim value As RasterImage
 
value = RasterImageConverter.ChangeFromEmf(hemf, width, height, backColor)
public static RasterImage ChangeFromEmf( 
   IntPtr hemf,
   int width,
   int height,
   RasterColor backColor
)
 function Leadtools.Drawing.RasterImageConverter.ChangeFromEmf(IntPtr,Int32,Int32,RasterColor)( 
   hemf ,
   width ,
   height ,
   backColor 
)
public:
static RasterImage^ ChangeFromEmf( 
   IntPtr hemf,
   int width,
   int height,
   RasterColor backColor
) 

Parameters

hemf
Handle to the EMF to be changed.
width
Amount by which to scale the enhanced metafile's original width.
height
Amount by which to scale the enhanced metafile's original height.
backColor
The color to use to fill the image area before painting the metafile objects.

Return Value

The newly created Leadtools.RasterImage object.
Remarks

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.

If this method is successful, hemf is freed.

The enhanced metafile can be loaded at the original dimension or scaled by using the width and height parameters.

If width == 0 and height == 0 - the enhanced metafile is loaded at the size present in the file.

If width == 0 and height > 0 - the enhanced metafile is stretched so that it has the height height (preserving the aspect ratio).

If width > 0 and height == 0 - the enhanced metafile is stretched so that it has the width width (preserving the aspect ratio).

If width > 0 and height > 0 - the enhanced 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+.

Example
For an example, refer to ChangeFromEmf(IntPtr, int, int).
Requirements

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

See Also

Reference

RasterImageConverter Class
RasterImageConverter Members
Overload List
ChangeFromEmf(hemf, width, height)
ChangeFromWmf(IntPtr,Int32,Int32) Method
FromEmf
FromWmf
ChangeToEmf Method
ChangeToWmf Method
ToEmf
ToWmf

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.