I can't read the EMF binary file. When I hex-dump it, I still don't understand it. Is there any software to read GDI commands from an EMF file? Thanks.

link|improve this question

EMF, I typed three times above. =.= – Emerald214 Apr 9 '11 at 7:32
@rwong: it doesn't help, it's specification. – Emerald214 Apr 9 '11 at 7:37
Are you looking for a software that can convert it into an image, or do you actually need the GDI commands? The latter goal may be quite difficult. According to Wikipedia, en.wikipedia.org/wiki/Batik_(software)) and en.wikipedia.org/wiki/FreeHEP are two software that can convert EMF file into vector graphics. – rwong Apr 9 '11 at 7:45
I want to see GDI commands, not graphics because we can open EMF file just with mspaint! Of course we can look into the hex dump file, but it's too difficult to understand. – Emerald214 Apr 9 '11 at 8:40
feedback

3 Answers

Your best bet is the EnumEnhMetaFile() API function.

link|improve this answer
it's good too but PlayEnhMetaFileRecord doesn't write some records. I'm still working on it. stackoverflow.com/questions/5763606/… – Emerald214 May 15 '11 at 4:31
feedback
up vote 0 down vote accepted

I found this, it's good! It can convert emf to GDI or GDI+ commands.

http://frazmitic.free.fr/emfexplorer/index.htm

link|improve this answer
feedback

http://www.flounder.com/metafileexplorer.htm

I've found the Metafile Explorer utility to be quite useful. Not only can you dump a listing of the individual EMF records in the file, but you can also use this utility as a debugger which allows you to single step thru the EMF records while viewing the EMF output being created at the same time. This is a free utility and is the best I've seen for debugging an EMF file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.