You need an URI for your image. Either your server generates a "Data URI" 
(https://en.wikipedia.org/wiki/Data_URI_scheme) or you write an 
ImageServlet that can serve your image's byte array with the correct HTTP 
content type so that the browser can render the image.

So in case of data uri you would have something like 

new Image("data:image/png;base64,<your image bytes as base64>")

and in case of an ImageServlet it would be

new Image("/images/<identifier>.png")

where <identifier> is used by your ImageServlet to load the image from the 
DB, maybe convert it to "png" and then send it to the browser using 
"image/png" as response content type.

-- J.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to