The GetMetaFileBitsEx function retrieves the contents of a Windows-format metafile and copies them into the specified buffer.
Note This function is provided for compatibility with 16-bit versions of Windows. Win32-based applications should use the GetEnhMetaFileBits function.
UINT GetMetaFileBitsEx(
HMETAFILE hmf, // handle to metafile
UINT nSize, // size of metafile, in bytes
LPVOID lpvData // pointer to metafile data
);
If the function succeeds and the buffer pointer is NULL, the return value is the number of bytes required for the buffer; if the function succeeds and the buffer pointer is a valid pointer, the return value is the number of bytes copied.
If the function fails, the return value is zero.
Windows NT: To get extended error information, call GetLastError.
After the Windows-metafile bits are retrieved, they can be used to create a memory-based metafile by calling the SetMetaFileBitsEx function.
The GetMetaFileBitsEx function does not invalidate the metafile handle. An application must delete this handle by calling the DeleteMetaFile function.
A Windows-format metafile does not support the new curve, path, and transformation functions, such as PolyBezier, BeginPath, and SetWorldTransform. Applications that use these new functions and use metafiles to store pictures created by these functions should use the enhanced format metafile functions.
To convert a Windows-format metafile into an enhanced-format metafile, use the SetWinMetaFileBits function.
Metafiles Overview, Metafile Functions, BeginPath, DeleteMetaFile, GetEnhMetaFileBits, PolyBezier, SetMetaFileBitsEx, SetWinMetaFileBits, SetWorldTransform