Re: [JAVA2D] Making a JTextArea appear in a BufferedImage O.o

2006-04-24 Thread [ Fenrir Northern Wolf ]
I Forgot to mention that, but I did override the paintComponent() method like this :public void paintComponent(Graphics g){ super.paintComponent(g); update(g); } public void update(Graphics g){ Graphics2D g2D = (Graphics2D) g; Dimension dim = getSize(); int w = dim.width; int h = dim.height;

Re: [JAVA2D] graphic interface development

2006-04-24 Thread Dmitri Trembovetski
You might want to check out Swing Sightings: http://java.sun.com/products/jfc/tsc/sightings/ May be you'll find an application which looks something like what you're trying to create. Thanks, Dmitri On Mon, Apr 24, 2006 at 02:08:42PM -0700, [EMAIL PROTECTED] wrote: Hi all,