How can I convert one WMF file to PNG/BMP/JPG format with custom output resolution?
Example: Take WMF file and outputs PNG file with 2000x2000 px.
Thanks in advance.
You can use the excelent Batik ( http://xmlgraphics.apache.org/batik/ ) lib to achieve this. But you will need to follow this steps:
- Convert the WMF file to SVG using the WMFTranscoder
- Convert the SVG to JGP using the JPGTranscoder
WMF >> SVG >> JPG
Here is a discussion on coderanch about it: http://www.coderanch.com/t/422868/java/java/converting-WMF-Windows-Meta-File
You can use different tools for this format. You can choose for example GIMP. In Java you have a library for converting WMF files.
来源:https://stackoverflow.com/questions/14279104/convert-wmf-to-png-bmp-jpg