Javascript Hex String To Image
I'll cut right to the chase. Right now I am developing a web based application. It has a PHP REST based architecture that serves up XML documents. On many of these documents attrib
Solution 1:
Encode the images using base64 and write them out in a CDATA string into your XML with this format:
data:[<MIME-type>][;charset="<encoding>"][;base64],0123456789abcdefg...
When constructing your document, use this string as your src
<imgsrc="data:image/png;base64,0123456789abcdefg..." />
Post a Comment for "Javascript Hex String To Image"