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
mime type printed on converted image
- 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
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)
convert SVG:processes.svg -background white -thumbnail 800x600 PNG:processes.png
(perhaps your SVG compilation is flawed)