mime type printed on converted image

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
senyahnoj

mime type printed on converted image

Post by senyahnoj »

When I convert from SVG to PNG using the following command in ImageMagick 6.2.4:

convert -background white -thumbnail 800x600 SVG:processes.svg PNG:processes.png

The resultant PNG output has "image/svg+xml" overlayed over the image in large letters.

Does anyone have any idea how I can turn this off?
Thanks
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: mime type printed on converted image

Post by fmw42 »

don't know if this will help, but try

convert SVG:processes.svg -background white -thumbnail 800x600 PNG:processes.png

(perhaps your SVG compilation is flawed)
Post Reply