vote up 1 vote down star
2

I have a paint application that runs as a Java applet. I need to save the contents of the canvas on server machine in any image-format typically PNG. Please help!

flag

67% accept rate

2 Answers

vote up 1 vote down check

You might be interested by the code I wrote for Processing, which is basically Java code. Re: save to web --- image export. Earlier in the thread I explain some precautions to be taken with such application (to avoid flooding a server from a malicious user) and I give the corresponding PHP code.

link|flag
That code worked well for me. What I was looking for was a way to export the canvas content. I did that using the Canvas class in g2d library. – Swanand Jan 27 at 13:52
vote up 2 vote down

You need to do two things:

  1. Generate an PNG image file in your applet - Writing/Saving an Image
  2. Post the image file to some server-side CGI/servlet which will store the image - How do I upload a file to my servlet or JSP?

What are you running on the server? PHP? Rails? JSP? .NET?

link|flag
Thanks a lot! I'll go through the links & BTW, I'm using PHP. – Swanand Dec 30 '08 at 15:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.