<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Jul 29, 2017 at 5:10 PM, Jody Garnett <span dir="ltr"><<a href="mailto:jody.garnett@gmail.com" target="_blank">jody.garnett@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">I wonder if someone really smart with SVG could pull in the background as a reference (so it would not change each time the text and graphics over top was changed?</div></blockquote><div><br></div><div>That's possible, we can replace the embedded image in the SVG XML by a file path, i.e. replace something like this:<br></div><div><br><image<br>  xlink:href="data:image/png;<wbr>base64,iV...<br>  .../><br><br></div><div>by something like this:<br></div><div><br><image<br>  xlink:href="../some.png"<br>  .../><br><br></div><div>If you are using Inkscape, it will let you select between these two when putting an external image into the document.<br><br></div><div>The problem is that some programs won't follow these links and simply not show the image. Inkscape seems to handle some paths well and some not, but it can handle the absolute paths with file:// and relative paths without file:// as in the example above. SVG format definition says this can be IRI, so I suppose it can be anything. An example, although in a different context shows relative path to a local file.<br><br></div><div>Vaclav<br></div><br><br><a href="https://www.w3.org/TR/SVG/struct.html#ImageElement">https://www.w3.org/TR/SVG/struct.html#ImageElement</a><br><a href="https://www.w3.org/TR/SVG/types.html#DataTypeIRI">https://www.w3.org/TR/SVG/types.html#DataTypeIRI</a><br><a href="https://www.w3.org/TR/SVG/linking.html#IRIReference">https://www.w3.org/TR/SVG/linking.html#IRIReference</a><br></div></div></div>