Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
ToWmf Method
See Also 
Leadtools Namespace > RasterImage Class : ToWmf Method



Converts a LEAD RasterImage object into a Windows metafile (WMF).

Syntax

Visual Basic (Declaration) 
Public Function ToWmf() As IntPtr
Visual Basic (Usage)Copy Code
Dim instance As RasterImage
Dim value As IntPtr
 
value = instance.ToWmf()
C# 
public IntPtr ToWmf()
C++/CLI 
public:
IntPtr ToWmf(); 

Return Value

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

Example

For an example, refer to FromWmf

Remarks

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

This function allocates an metafile bitmap and copies the 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.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also