Include SVG file in SVG - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T20:30:50Z http://stackoverflow.com/feeds/question/652004 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/652004/include-svg-file-in-svg 1 Include SVG file in SVG Ken 2009-03-16T20:17:09Z 2009-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>&lt;svg xmlns=...&gt; &lt;defs&gt; &lt;linearGradient id="myGradient" ...&gt; &lt;/linearGradient&gt; &lt;/defs&gt; &lt;/svg&gt; </code></pre> <p>image.svg:</p> <pre><code>&lt;svg xmlns=...&gt; &lt;rect width="100" height="100" fill="styles.svg#myGradient"/&gt; &lt;/svg&gt; </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#652138 1 Answer by Ken for Include SVG file in SVG Ken 2009-03-16T21:00:20Z 2009-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#1105903 0 Answer by Boldewyn for Include SVG file in SVG Boldewyn 2009-07-09T19:11:56Z 2009-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>