Convert file.svg with image link gives blank image
Posted: 2015-04-22T09:17:35-07:00
Hi,
I'm trying to convert a svg file to a png file with the convert command, but it doesn't display the image link in the png file. But i can get it working by adding "msvg:" before the svg file name. Does someone knows how to make it work without the "msvg:" part?
Not working command :
Working command :
SVG file :
I'm trying to convert a svg file to a png file with the convert command, but it doesn't display the image link in the png file. But i can get it working by adding "msvg:" before the svg file name. Does someone knows how to make it work without the "msvg:" part?
Not working command :
Code: Select all
convert file.svg file.png
Code: Select all
convert msvg:file.svg file.png
Code: Select all
<?xml version="1.0"?>
<svg id="svg" width="1024" height="1024" preserveAspectRatio="xMinYMin">
<image id="svg-image" x="0" y="0" width="1024" height="1024" product_id="4" xlink:href="coeur.png">
</image>
<rect x="10" y="10" width="80" height="80" fill="red"/>
</svg>