Is it possible to render image with html? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T04:30:35Z http://stackoverflow.com/feeds/question/955076 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/955076/is-it-possible-to-render-image-with-html 3 Is it possible to render image with html? mamu 2009-06-05T09:46:48Z 2009-06-05T13:30:13Z <p>I have control in a page that gets html from text file and renders that html in webpage. Right now it has to add image somewhere and reference that image src.</p> <p>I was wondering if we can render image along with other html code, is it possible?</p> http://stackoverflow.com/questions/955076/is-it-possible-to-render-image-with-html/955090#955090 3 Answer by David Schmitt for Is it possible to render image with html? David Schmitt 2009-06-05T09:50:21Z 2009-06-05T09:50:21Z <p>You can use inline <a href="http://en.wikipedia.org/wiki/SVG" rel="nofollow">SVG</a>. See this <a href="https://developer.mozilla.org/en/SVG%5FIn%5FHTML%5FIntroduction" rel="nofollow">article for mozilla</a> and this <a href="http://intertwingly.net/blog/2007/05/04/Inline-SVG-in-MSIE" rel="nofollow">one for IE</a>.</p> http://stackoverflow.com/questions/955076/is-it-possible-to-render-image-with-html/955096#955096 5 Answer by Anton Gogolev for Is it possible to render image with html? Anton Gogolev 2009-06-05T09:51:33Z 2009-06-05T09:51:33Z <p>Yes, it is. You need a <a href="http://en.wikipedia.org/wiki/Data%5FURI%5Fscheme" rel="nofollow">Data URI scheme</a>:</p> <pre><code>&lt;img src="data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABGdBTUEAALGP C/xhBQAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9YGARc5KB0XV+IA AAAddEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAAF1J REFUGNO9zL0NglAAxPEfdLTs4BZM4DIO4C7OwQg2JoQ9LE1exdlYvBBeZ7jq ch9//q1uH4TLzw4d6+ErXMMcXuHWxId3KOETnnXXV6MJpcq2MLaI97CER3N0 vr4MkhoXe0rZigAAAABJRU5ErkJggg==" alt="Red dot" /&gt; </code></pre> <p>The same can be done in CSS:</p> <pre><code>ul.checklist &gt; li.complete { margin-left: 20px; background: url('data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAA ABlBMVEUAAAD///+l2Z/dAAAAM0lEQVR4nGP4/5/h/1+G/5 8ZDrAz3D/McH8yw83NDDeNGe4Ug9C9zwz3gVLMDA/A6P9/A FGGFyjOXZtQAAAAAElFTkSuQmCC') top left no-repeat; } </code></pre> http://stackoverflow.com/questions/955076/is-it-possible-to-render-image-with-html/955109#955109 1 Answer by James Curran for Is it possible to render image with html? James Curran 2009-06-05T09:54:47Z 2009-06-05T09:54:47Z <p>I've seen it done by creating a table with one cell for each pixel, setting the cell's background color to the pixel's color.</p> http://stackoverflow.com/questions/955076/is-it-possible-to-render-image-with-html/955126#955126 1 Answer by raspi for Is it possible to render image with html? raspi 2009-06-05T10:00:38Z 2009-06-05T10:00:38Z <p>You can also create images using CSS and different size characters and playing with z-indexes. Here's <a href="http://nedbatchelder.com/blog/200805/css%5Fhomer%5Fanimated.html" rel="nofollow">CSS Homer</a>.</p>