I'm trying to convert a SVG to a PNG. Nearly everything works fine, but the Marker ist missing.
SVG:
Code: Select all
<defs>
<marker viewBox="0 0 6 6" markerWidth="6" markerHeight="6" orient="auto" refX="1" refY="3" id="markerSj5madk1z3">
<polygon points="0,6,6,6,3,0,0,6" fill="#000000" transform="matrix(0,1,-1,0,6,0)" style=""></polygon>
</marker>
</defs>
<line x1="610" x2="800" y1="800" y2="800" stroke="#000000" id="line" style="stroke-width: 3; marker-end: url("#markerSj5madk1z3");"></line>
Code: Select all
convert -background none temp.svg -resize 900x900 svg.png
Cheers daluela