#include "ltwrappr.h"
virtual L_INT LVectorBase::ConvertFromEMF(hdc, hEMF)
HDC hdc; |
handle to a device context |
HENHMETAFILE hEMF; |
handle to the metafile to be converted |
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.
Parameter |
Description |
hdc |
Handle to the device context responsible for the conversion. |
hEMF |
Handle to the EMF to be converted. |
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
This function updates information in the vector handle and copies the EMF 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. |
Functions: |
LVectorBase::ConvertToEMF, LVectorBase::ConvertToWMF, LVectorBase::ConvertFromWMF |
Topics: |
|
|
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;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET