Re: Converting EMF to JPG
Posted: 2012-03-26T19:42:10-07:00
why does your verbose info for the EMF file have png properties. Perhaps your EMF reader is reading the png size and IM does not change that. Try adding -strip to your convert to remove the png properties.
convert -density XX -units pixelsperinch image.emf -strip result.jpg where XX=72 or less
or
convert -strip -density XX -units pixelsperinch image.emf result.jpg where XX=72 or less
or if your emf has an imbedded png image, then try
convert image.emf -strip -density XX -units pixelsperinch result.jpg
See if one of those will work.
convert -density XX -units pixelsperinch image.emf -strip result.jpg where XX=72 or less
or
convert -strip -density XX -units pixelsperinch image.emf result.jpg where XX=72 or less
or if your emf has an imbedded png image, then try
convert image.emf -strip -density XX -units pixelsperinch result.jpg
See if one of those will work.