Re: Display a byte[] in imageCell

2011-05-10 Thread Thad
The underscores in your partial sample indicates that your using what RFC3548 calls "Base 64 Encoding with URL and Filename Safe Alphabet" (see http://www.faqs.org/rfcs/rfc3548.html). I use this, too, in some places, but not images. The RFC also says: This encoding should not be regarded as th

Display a byte[] in imageCell

2011-05-10 Thread gadev
I am using GWT 2.3 and GAE 1.4.3. I have images stored as blobs in the datastore and wish to display them in a CellTable. One of the columns of the CellTable has got ImaceCell. I extract the byte[] from the blob then I use the Base64Utils, String image = Base64Utils.toBase64(byteArray); and send