tags:

views:

243

answers:

2

hi guys

i want to Generate .png image in GWT

Does anyone know about this?

+1  A: 

We need more information to be able to help you.

  • If you're talking about image bundles, there a whole guide on how to use them.
  • If you want to create pngs to use in your GWT app, then you need to look for a graphics editor
    • Adobe Photoshop is a very powerful editor, but costs $$$
    • The GIMP is also powerful
    • Paint.NET is a simpler tool that would be easier for a newbie
Steve Armstrong
Hi steve ,i don't want to use any othe software , i want to generate the .png image files using GWT
Tushar Ahirrao
You want to generate a png file in the browser using javascript (and the javascript is compiled from GWT Java)?
Steve Armstrong
Yes i want to generate a png file in browser using GWT
Tushar Ahirrao
A: 

You will need to use another library to create the png images. The gwt library only creates javascript and image bundles. I recomend you to look for a specific image manipulation library to create your image. Maybe this article may help you too. http://www.javaworld.com/javaworld/jw-05-2000/jw-0505-servlets.html

Bruno Bilescky