svg with external feImage inclusion=blank image on convert
Posted: 2007-03-21T00:58:32-07:00
Hi,
I searched through the site and found some comments about svg but nothing about this specific problem. (Sorry if I have overseen it.)
I want to convert a svg to a gif.
The svg actually is a container which loads external sources (a "normal" svg works without trouble) :
--------------------->8----------------------------
conversion :
or
return a black "empty" image
I also tried to include the feImage with full path.
Question: me too stupid or bug/missing feature in ImageMagick?
xy
I searched through the site and found some comments about svg but nothing about this specific problem. (Sorry if I have overseen it.)
I want to convert a svg to a gif.
The svg actually is a container which loads external sources (a "normal" svg works without trouble) :
Code: Select all
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg viewBox = "0 0 274 274" version = "1.1">
<filter id = "i1">
<feImage x = "0" y = "0" width = "274" height = "274" result = "x1" xlink:href = "trans.svg"/>
<feTile result = "tile1"/>
<feImage x = "10" y = "10" width = "254" height = "254" result = "x2" xlink:href = "701.svg"/>
<feComposite in = "x2" in2 = "x1"/>
</filter>
<g>
<rect x = "0" y = "0" width = "100%" height = "100%" filter = "url(#i1)"/>
</g>
</svg>
conversion :
Code: Select all
convert -scale 274 temp.svg temp.gif
Code: Select all
convert -density 274 temp.svg temp.gif
I also tried to include the feImage with full path.
Question: me too stupid or bug/missing feature in ImageMagick?
xy