LVectorBase::ConvertFromWMF
#include "ltwrappr.h"
virtual L_INT LVectorBase::ConvertFromWMF(hDC, hWMF)
HDC hDC; |
/* handle to a device context */ |
HMETAFILE hWMF; |
/* handle to the WMF to be converted */ |
Converts a Windows metafile (WMF) into a LEAD Technologies vector handle. When this function is completed, there are two copies of the drawing in memory: the WMF and the original LEAD vector. Freeing one will not affect the other.
This function is available in the LEADTOOLS Vector Imaging Pro Toolkit.
Parameter |
Description |
hDC |
Handle to the device context responsible for the conversion. |
hWMF |
Handle to the WMF to be converted. |
Returns
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Comments
This function updates information in the vector handle and copies the WMF drawing data into the LEAD bitmap.
Required DLLs and Libraries
LVKRN For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
See Also
Functions: |
LVectorBase::ConvertToWMF, LVectorBase::ConvertToEMF, LVectorBase::ConvertFromEMF |
Topics: |
|
|
Example
void Example34( HWND hWnd, L_TCHAR L_FAR *pszFileName, HMETAFILE hWMF )
{
LVectorBase Vector;
HDC hDC;
//Convert to LEAD vector
hDC = GetDC( hWnd );
Vector.ConvertFromWMF( hDC, hWMF );
ReleaseDC( hWnd, hDC );
//Save as DXF
Vector.Save( pszFileName,FILE_DXF);
}