defn noob wrote:
> i need a library to draw pictures either in a GUI or in the browser if
> that is possible?
It depends on what you mean by "in a browser." Swing (and AWT) works
both on the desktop and in an applet. But applets aren't much used
these days.
The other way of displaying "pictures" would just be to draw them on an
image and then display them. Both Swing and browsers handle that just fine.
Swing:
<http://java.sun.com/docs/books/tutorial/uiswing/>
Images:
<http://java.sun.com/docs/books/tutorial/2d/index.html>
>
> what libraries are there for this and where can i browse the standard
> library and where can i find 3rd party libraries?
|