Skip to content Skip to sidebar Skip to footer

How Can I Display Image In Ie Using Base64 Encoding Method?

I want to display image using base64 encoding in IE using GWT If it is not possible can u please suggest me the alternate way except creating the image to serverside & sending

Solution 1:

Normally the syntax is:

<imgsrc="data:image/gif;base64,DATA" />

where DATA is the base64-encoded image. However, IE doesn't support images of that form natively. It will work if you include the IE7 javascript library though, using this trick

Post a Comment for "How Can I Display Image In Ie Using Base64 Encoding Method?"