Base 64 encode your images (picture attributes) using function IMAGE_DATA
Embedding picture attribute in HTML:
<img src='<<IMAGE_DATA(User.Pic)>>' width='100' height='100'>
Embedding Base 64 string :
HTML Image Embedding
<img alt="Embedded Image"
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIA..." />
CSS Image Embedding
div.image {
width:100px;
height:100px;
background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIA...);
}
XML Image Embedding Example
<image>
<title>An Image</title>
<link>http://www.your.domain</link>
<url>data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIA...</url>
</image>
Data URIs can potentially store any type of data, not just images.
Not sure if this function can be used on the document attributes.
HTML CSS Embedding
<link rel="stylesheet" type="text/css"
href="data:text/css;base64,LyogKioqKiogVGVtcGxhdGUgKioq..." />
HTML Javascript Embedding
<script type="text/javascript"
src="data:text/javascript;base64,dmFyIHNjT2JqMSA9IG5ldyBzY3Jv..."></script>
Cheers