Include SVG file in SVG - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T20:30:50Zhttp://stackoverflow.com/feeds/question/652004http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/652004/include-svg-file-in-svg1Include SVG file in SVGKen2009-03-16T20:17:09Z2009-07-09T19:11:56Z
<p>I've got a linearGradient in the defs section of my SVG file, and reference it with fill="url(#myGradientName)". That works great so far.</p>
<p>I think I should be able to put my whole defs section in its own SVG file, and then just reference that from all my SVG images. That is, something like:</p>
<p>styles.svg:</p>
<pre><code><svg xmlns=...>
<defs>
<linearGradient id="myGradient" ...>
</linearGradient>
</defs>
</svg>
</code></pre>
<p>image.svg:</p>
<pre><code><svg xmlns=...>
<rect width="100" height="100" fill="styles.svg#myGradient"/>
</svg>
</code></pre>
<p>But I can't seem to get the style to apply. Do I have the wrong syntax for IDs external to this file (styles.svg#myGradient)? Do I need to explicitly include the file first somehow?</p>
<p>I've been pouring over the SVG spec and it looks like this should be possible, but none of the examples actually show it being done.</p>
<p>Edit: The <a href="http://xmlgraphics.apache.org/fop/faq.html#svg-url" rel="nofollow">FOP FAQ</a> suggests that the correct syntax is fill="url(grad.svg#PurpleToWhite)", but that doesn't work in Gecko or Webkit. Is that correct and nobody supports it, or am I doing something else wrong?</p>
http://stackoverflow.com/questions/652004/include-svg-file-in-svg/652138#6521381Answer by Ken for Include SVG file in SVGKen2009-03-16T21:00:20Z2009-03-16T21:00:20Z<p>It looks like this is only supported under <a href="https://developer.mozilla.org/web-tech/2008/10/10/svg-external-document-references/" rel="nofollow">Firefox 3.1</a>.</p>
http://stackoverflow.com/questions/652004/include-svg-file-in-svg/1105903#11059030Answer by Boldewyn for Include SVG file in SVGBoldewyn2009-07-09T19:11:56Z2009-07-09T19:11:56Z<p>Actually, the FOP FAQ is right, the correct syntax is embracing the URI with <code>url(...)</code>. Just checked with my Firefox, and it handles fills <em>only</em> with surrounding <code>url()</code>. It would be a bug in Safari or Opera, if the'd handle it differently.</p>
<p>I coincidentally filed a <a href="http://stackoverflow.com/questions/1104024/gradient-servers-as-external-files-in-svg">similar question</a>, but with similarly little success.</p>
<p>Cheers,</p>