RE: image manipulating via servlets on tomcat4

2002-03-12 Thread Reynir Hübner
it helps -reynir -Original Message- From: yilmaz [mailto:[EMAIL PROTECTED]] Sent: 12. mars 2002 14:54 To: Tomcat Users List Subject: image manipulating via servlets on tomcat4 Hi everybody, I am using tomcat4 on win 2000. I have searched all the archives and almost all websites

Re: image manipulating via servlets on tomcat4

2002-03-12 Thread Micael Padraig Og mac Grene
That should be easy. Call a class that does all that and then load the image. Do I misunderstand you? At 10:54 PM 3/12/02 +0800, you wrote: Hi everybody, I am using tomcat4 on win 2000. I have searched all the archives and almost all websites related with java, to no avail. My problem is

Re: image manipulating via servlets on tomcat4

2002-03-12 Thread Tom Oinn
yilmaz wrote: Hi everybody, I am using tomcat4 on win 2000. I have searched all the archives and almost all websites related with java, to no avail. My problem is manupulating images via servlets on Tomcat. In fact , there are tons of examples on the internet and on the archives

AW: image manipulating via servlets on tomcat4

2002-03-12 Thread Ralph Einfeldt
, 12. März 2002 15:54 An: Tomcat Users List Betreff: image manipulating via servlets on tomcat4 snip/ I tried almost every way, in vain :( snip/ -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

RE: image manipulating via servlets on tomcat4

2002-03-12 Thread Jarecsni János
: yilmaz [mailto:[EMAIL PROTECTED]] |Sent: Tuesday, March 12, 2002 3:54 PM |To: Tomcat Users List |Subject: image manipulating via servlets on tomcat4 | | |Hi everybody, |I am using tomcat4 on win 2000. |I have searched all the archives and almost all websites related with java, |to no avail. |My problem

Re: image manipulating via servlets on tomcat4

2002-03-12 Thread Mark
Is the problem that the 'old' vs. newly generated image displays (with the same .gif/.jpg name)? If that's the case then it's likely a problem with browser image caching. The only way I found to get around that was to generate unique image file names each time the new images were generated,

Re: image manipulating via servlets on tomcat4

2002-03-12 Thread Bo Xu
- Original Message - From: yilmaz [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 9:54 AM Subject: image manipulating via servlets on tomcat4 Hi everybody, I am using tomcat4 on win 2000. I have searched all the archives and almost all

Re: image manipulating via servlets on tomcat4

2002-03-12 Thread yilmaz
List [EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 11:23 PM Subject: AW: image manipulating via servlets on tomcat4 - Use AWT as for any gui. Have a look at: java.awt.Toolkit.getImage(); java.awt.Image.getGraphics(); java.awt.Graphics.drawString(); If you did it already this way, what

Re: image manipulating via servlets on tomcat4

2002-03-12 Thread yilmaz
manipulating via servlets on tomcat4 Is the problem that the 'old' vs. newly generated image displays (with the same .gif/.jpg name)? If that's the case then it's likely a problem with browser image caching. The only way I found to get around that was to generate unique image file names each

AW: image manipulating via servlets on tomcat4

2002-03-12 Thread Ralph Einfeldt
List Betreff: Re: image manipulating via servlets on tomcat4 snip/ Thanks to all who answered my question. My problem is , when i load an image via Toolkit class like : Image img=Toolkit.getDefaultToolkit().getImage(imageURL); Then create a BufferedImage object to write on it. BufferedImage bi