@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: The GetWinMetaFileBits API !!!!C# Signature: [DllImport("gdi32.dll")] static extern uint GetWinMetaFileBits(IntPtr hemf, uint cbBuffer, [Out] IntPtr lpbBuffer, MappingMode fnMapMode, IntPtr hdcRef); !!!!User-Defined Types: None. !!!!Notes: None. !!!!Tips & Tricks: Please add some! !!!!Sample Code: byte[] byteArray = new byte[nBytes]; var gch = GCHandle.Alloc(byteArray, GCHandleType.Pinned); IntPtr address = gch.AddrOfPinnedObject(); nBytes = GetWinMetaFileBits(hEMF, nBytes, address, MappingModes.ANISOTROPIC, hDC); gch.Free(); !!!!Alternative Managed API: Do you know one? Please contribute it! Documentation: GetWinMetaFileBits@msdn on MSDN
Edit gdi32.getwinmetaf...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.