I'm using the same image multiple times in a single SVG document. Embedding the same image multiple times as a data uri using xlink:href
seems like unnecessary file bloat.
What I currently have is: <image xlink:href="data:image/png;base64..."
appearing multiple times with the same data uri.
Is there a way to embed a data uri in a separate svg element and then link all the image
elements to it, thus avoiding the data duplication?
You could put the image in a symbol and then point
<use>
elements at the symbol.