vote up 3 vote down star
2

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.

I was wondering if we can render image along with other html code, is it possible?

flag

74% accept rate

4 Answers

vote up 5 vote down check

Yes, it is. You need a Data URI scheme:

<img src="data:image/png;base64,
iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABGdBTUEAALGP
C/xhBQAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9YGARc5KB0XV+IA
AAAddEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAAF1J
REFUGNO9zL0NglAAxPEfdLTs4BZM4DIO4C7OwQg2JoQ9LE1exdlYvBBeZ7jq
ch9//q1uH4TLzw4d6+ErXMMcXuHWxId3KOETnnXXV6MJpcq2MLaI97CER3N0
vr4MkhoXe0rZigAAAABJRU5ErkJggg==" alt="Red dot" />

The same can be done in CSS:

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; }
link|flag
6  
Note that only very recent versions of IE support data URIs. – Laurence Gonsalves Jun 5 at 9:55
vote up 3 vote down

You can use inline SVG. See this article for mozilla and this one for IE.

link|flag
vote up 1 vote down

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.

link|flag
2  
Note that while this is possible, it is a hack and tends to make browsers crawl as they deal with a huge DOM. – David Dorward Jun 5 at 9:57
vote up 1 vote down

You can also create images using CSS and different size characters and playing with z-indexes. Here's CSS Homer.

link|flag
+1 for this really s(l)ick idea. – David Schmitt Jun 5 at 14:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.