Click here to Skip to main content
15,891,905 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to draw a device context to an emf file.
Posted
Comments
Richard MacCutchan 2-Nov-11 10:03am    
By writing some code!

 
Share this answer
 
You will need to create a Device Context for an Enhanced Meta-File, then you can draw on the MetaFile Device Context. You will want to use a device context that is compatible to what you want to draw from, such as a Window DC from a call to GetDC or BeginPaint.

hdcMeta = ::CreateEnhMetaFile(hdc, _T("C:\\output.emf"), &rect, pDescription); 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900