virtual L_INT LBitmapBase::ConvertFromWMF(hWMF, uWidth, uHeight)
Converts a Windows metafile (WMF) into a LEAD Technologies bitmap. 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.
Handle to the WMF to be converted.
Amount by which to scale the metafiles original width.
Amount by which to scale the metafiles original height.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
The metafile can be loaded at the original dimension or scaled by using the uWidth and uHeight parameters.
If uWidth == 0 and uHeight == 0 - the metafile is loaded at the size present in the file
If uWidth == 0 and uHeight > 0 - the metafile is stretched so that it has the height uHeight (preserving the aspect ratio)
If uWidth > 0 and uHeight == 0 - the metafile is stretched so that it has the width uWidth (preserving the aspect ratio)
If uWidth > 0 and uHeight > 0 - the metafile is stretched so that it has the width uWidth and height uHeight (the aspect ratio is ignored)
Win32, x64.
This example loads a bitmap, converts it to a WMF, then converts the WMF back to a bitmap
L_INT LBitmapBase__ConvertFromWMFExample(HWND hWnd, LBitmap* pLeadBitmap)
{
UNREFERENCED_PARAMETER(hWnd);
L_INT nRet;
LBitmap Bitmap; /* Bitmap handle for the initial image */
HMETAFILE hWmf;
/* Load a bitmap, keeping its own bits per pixel */
nRet =Bitmap.Load(MAKE_IMAGE_PATH(TEXT("ImageProcessingDemo\\Image3.cmp")), 0, ORDER_BGR, NULL, NULL);
if(nRet !=SUCCESS)
return nRet;
/* Convert the initial bitmap to a WMF */
hWmf = Bitmap.ConvertToWMF( );
/* Free the initial bitmap */
nRet =Bitmap.Free();
if(nRet !=SUCCESS)
return nRet;
/* Convert the WMF to create a new LEAD bitmap and preserve the size */
nRet =pLeadBitmap->ConvertFromWMF(hWmf, 0, 0);
if(nRet !=SUCCESS)
return nRet;
/* Clean up */
DeleteMetaFile(hWmf);
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document