Custom JSP tag. Lets you embed base64-encoded image in HTML code. Tag eimg mimics
HTML img but embeds image in a webpage using data: scheme. It is so called Data URI scheme, which is
a way of including static data items in-line on a web page.
<%@ taglib uri="taglib.tld" prefix="i" %> <html> ... <i:eimg src="/mydata/image.jpg"/> ... </html> Tags are: eimg Custom tag embeds base64-encoded image data. Parameters are: 1) src Describes a source URL.
for downloading: Library: eimgtag.jar Description: taglib.tld See also Coldtags suite - the largest collection of custom JSP tags.
|
Also in Coldtags:
|