Is it possible to render image with html? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T04:30:35Zhttp://stackoverflow.com/feeds/question/955076http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/955076/is-it-possible-to-render-image-with-html3Is it possible to render image with html?mamu2009-06-05T09:46:48Z2009-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#9550903Answer by David Schmitt for Is it possible to render image with html?David Schmitt2009-06-05T09:50:21Z2009-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#9550965Answer by Anton Gogolev for Is it possible to render image with html?Anton Gogolev2009-06-05T09:51:33Z2009-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><img src="data:image/png;base64,
iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABGdBTUEAALGP
C/xhBQAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9YGARc5KB0XV+IA
AAAddEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAAF1J
REFUGNO9zL0NglAAxPEfdLTs4BZM4DIO4C7OwQg2JoQ9LE1exdlYvBBeZ7jq
ch9//q1uH4TLzw4d6+ErXMMcXuHWxId3KOETnnXXV6MJpcq2MLaI97CER3N0
vr4MkhoXe0rZigAAAABJRU5ErkJggg==" alt="Red dot" />
</code></pre>
<p>The same can be done in CSS:</p>
<pre><code>ul.checklist > 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#9551091Answer by James Curran for Is it possible to render image with html?James Curran2009-06-05T09:54:47Z2009-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#9551261Answer by raspi for Is it possible to render image with html?raspi2009-06-05T10:00:38Z2009-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>