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?
|
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?
|
|||
|
|
|
|
Yes, it is. You need a Data URI scheme:
The same can be done in CSS:
|
||||
|
|
|
You can use inline SVG. See this article for mozilla and this one for IE. |
||
|
|
|
|
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. |
||||
|
|
|
You can also create images using CSS and different size characters and playing with z-indexes. Here's CSS Homer. |
||
|