tags:

views:

122

answers:

1

Hi guys

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 URL to the client side

Can u help me ?

A: 

Normally the syntax is:

<img src="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

Michael Mrozek
IE8 supports it as it shows in the ACID 2 test.
ZippyV
but i am not using PHP , i am using Sevlet
Tushar Ahirrao