LEADTOOLS GDI/GDI+ (Leadtools.Drawing assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
ToWmf Method
See Also 



image
The source image.
image
The source image.
Converts a LEADTOOLS Leadtools.RasterImage object into a Windows Metafile (WMF).

Syntax

Visual Basic (Declaration) 
Public Shared Function ToWmf( _
   ByVal image As RasterImage _
) As IntPtr
Visual Basic (Usage)Copy Code
Dim image As RasterImage
Dim value As IntPtr
 
value = RasterImageConverter.ToWmf(image)
C# 
public static IntPtr ToWmf( 
   RasterImage image
)
C++/CLI 
public:
static IntPtr ToWmf( 
   RasterImage^ image
) 

Parameters

image
The source image.

Return Value

A handle to the Windows metafile (WMF) this method creates.

Example

Remarks

When this method is completed, there are two copies of the drawing in memory: the WMF and the original Leadtools.RasterImage object. Freeing one will not affect the other.

This function allocates an metafile bitmap and copies the Leadtools.RasterImage data to the Metafile.

When you no longer need the metafile, you can free it using the Windows DeleteMetaFile function.

This function does not support signed images.

For more information refer to RasterImage and GDI/GDI+.

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also