What is the best way to serialize SVG from the client DOM? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T18:09:29Zhttp://stackoverflow.com/feeds/question/227208http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/227208/what-is-the-best-way-to-serialize-svg-from-the-client-dom1What is the best way to serialize SVG from the client DOM?tstokesbme2008-10-22T19:29:37Z2008-10-26T13:05:49Z
<p>I am working on interactive SVG/AJAX interfaces where elements are created and repositioned on-the-fly by users. I'd like to support the ability for users to export their current view to a PNG image and/or an SVG document. I'd really like the SVG document to be as simple as possible (without a lot of nested transforms). Is there any framework that already supports this?</p>
<p>I'm currently asking my users to use the Ctrl+Alt+PrntScrn technique, and I don't want to ask them to install any software/plugins. </p>
<p>The server-side code is implemented in PHP right now, if that helps. I've already implemented the ability to generate a PNG image from the "original" document (before the client makes any modifications) using ImageMagick.</p>
http://stackoverflow.com/questions/227208/what-is-the-best-way-to-serialize-svg-from-the-client-dom/227754#2277542Answer by savetheclocktower for What is the best way to serialize SVG from the client DOM?savetheclocktower2008-10-22T22:25:50Z2008-10-22T22:25:50Z<p>I'm assuming you need this to work only in browsers that support SVG.</p>
<p>Firefox, Safari, and Opera provide the non-standard <code>XMLSerializer</code> API, so you could do something like this:</p>
<pre><code>var svg = document.getElementById('svg_root'); // or whatever you call it
var serializer = new XMLSerializer();
var str = serializer.serializeToString(svg);
</code></pre>
<p>From there, you can send it to the server and receive a PNG in return.</p>
<p>Here's <a href="https://developer.mozilla.org/en/Parsing_and_serializing_XML" rel="nofollow">Mozilla's developer page on serializing XML from the DOM</a>.</p>
http://stackoverflow.com/questions/227208/what-is-the-best-way-to-serialize-svg-from-the-client-dom/237990#2379901Answer by porneL for What is the best way to serialize SVG from the client DOM?porneL2008-10-26T13:05:49Z2008-10-26T13:05:49Z<p>Opera has implementation of <a href="http://www.w3.org/TR/DOM-Level-3-LS/load-save.html" rel="nofollow">W3C's DOM→XML serializer</a>. In XML mode <code>innerHTML</code> returns well-formed XML in Gecko.</p>
<p>HTML5 <code><canvas></code> can export its content as PNG file using <code>toDataURL()</code> and it's possible to paint any <code><img></code> element on canvas using <code>drawImage()</code>, so it should be possible to create <code><img src="data:application/svg+xml,…"></code>, paint it on canvas and export as <code>data:</code> URL.</p>