RE: Create an Image without using AWT

1999-08-19 Thread R.W. Shore
To: Spectron International, Inc. Cc: [EMAIL PROTECTED] Subject: Re: Create an Image without using AWT "Spectron International, Inc." wrote: > > I need to create an Image object in a servlet. The problem is that the > createImage() functions seems to need AWT and I can't c

Re: Create an Image without using AWT

1999-08-19 Thread Juergen Kreileder
> Robb Shecter writes: Robb> Nathan Meyers wrote: >> >> It's a "feature" of the AWT. Robb> This is really a "feature" of Java/X, or Java/Linux, isn't it? I Robb> don't think that this is a problem on NT. It's a Java/X "feature". OTOH can you run NT without a display?

Re: Create an Image without using AWT

1999-08-19 Thread Robb Shecter
Nathan Meyers wrote: > > It's a "feature" of the AWT. This is really a "feature" of Java/X, or Java/Linux, isn't it? I don't think that this is a problem on NT. - Robb -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a su

Re: Create an Image without using AWT

1999-08-19 Thread Robbie Baldock
Nathan Meyers wrote: > It's a "feature" of the AWT. A good solution is to run the Xvfb X server > (part of the XFree86 suite; you'll find it in most distributions) - it > runs an X server in a virtual frame buffer instead of a physical > display. That will make AWT happy without requiring a real

Re: Create an Image without using AWT

1999-08-18 Thread Nathan Meyers
"Spectron International, Inc." wrote: > > I need to create an Image object in a servlet. The problem is that the > createImage() functions seems to need AWT and I can't create an AWT object > in a servlet because it always tries to connect to the X Server. Is there > something like a MemoryImage

Create an Image without using AWT

1999-08-18 Thread Spectron International, Inc.
I need to create an Image object in a servlet. The problem is that the createImage() functions seems to need AWT and I can't create an AWT object in a servlet because it always tries to connect to the X Server. Is there something like a MemoryImage class that I can create to use as an offscreen ca