LVectorBase::ConvertFromEMF

#include "ltwrappr.h"

virtual L_INT LVectorBase::ConvertFromEMF(hdc, hEMF)

Converts an enhanced Windows metafile (EMF) into a LEAD Technologies vector handle. When this function is completed, there are two copies of the drawing in memory: the EMF and the original LEAD vector. Freeing one will not affect the other.

This function is available in the LEADTOOLS Vector Imaging Pro Toolkit.

Parameters

HDC hdc

Handle to the device context responsible for the conversion.

HENHMETAFILE hEMF

Handle to the EMF to be converted.

Returns

Value Meaning
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 EMF drawing data into the LEAD bitmap.

Required DLLs and Libraries

See Also

Functions

Topics

Example

L_INT LVectorBase__ConvertFromEMFExample( HWND hWnd, L_TCHAR* pszFileName, HENHMETAFILE hEMF ) 
{ 
   L_INT          nRet; 
   LVectorBase    Vector; 
   HDC            hDC; 
 
   //Convert to LEAD vector 
   hDC = GetDC( hWnd ); 
 
   nRet = Vector.ConvertFromEMF( hDC, hEMF ); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   ReleaseDC( hWnd, hDC ); 
 
   //Save as DXF 
   nRet = Vector.Save( pszFileName,FILE_DXF); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   return SUCCESS; 
} 
Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Vector C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.