Re: Displaying SVG from a memory stream
Boris Zbarsky <[email protected]> Tue, 04 Aug 2009 15:39:42 -0400
| Newsgroups | gmane.comp.mozilla.devel.svg |
|---|---|
| Message-ID | <[email protected]> |
Natarajan Thanikachalam wrote: > I am writing a XULRunner desktop application. I intend to store the SVG > images in a sqlite database and then read them and display directly, > instead of saving on the disk and then trying to display it. Your best bet is a protocol implementation that does what you want. Note that you could also use a data: URI, but since so much in SVG depends on references to fragments of various documents you might be better off with a protocol that supports relative urls and the like. -Boris