What is the best way to serialize SVG from the client DOM? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T18:09:29Z http://stackoverflow.com/feeds/question/227208 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/227208/what-is-the-best-way-to-serialize-svg-from-the-client-dom 1 What is the best way to serialize SVG from the client DOM? tstokesbme 2008-10-22T19:29:37Z 2008-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#227754 2 Answer by savetheclocktower for What is the best way to serialize SVG from the client DOM? savetheclocktower 2008-10-22T22:25:50Z 2008-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#237990 1 Answer by porneL for What is the best way to serialize SVG from the client DOM? porneL 2008-10-26T13:05:49Z 2008-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>&lt;canvas&gt;</code> can export its content as PNG file using <code>toDataURL()</code> and it's possible to paint any <code>&lt;img&gt;</code> element on canvas using <code>drawImage()</code>, so it should be possible to create <code>&lt;img src="data:application/svg+xml,…"&gt;</code>, paint it on canvas and export as <code>data:</code> URL.</p>