• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

how to retrieve and edit images in jsp

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I want to retrieve images from Database(say ORACLE) and i want to display in client using jsp.

After i want to edit that images , i may draw circle or make anything in that images and i want to store it again into Database.

How can i do this in JSP???
What are the techniques are available??
Somebody said that its possible using applets.If i use applet, in that client side it may take more times to load....
So is there any technologies available to do this in JSP???
[ January 11, 2008: Message edited by: Ganesh PS ]
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to JavaRanch.

What do you mean by "edit"? Programmatically on the server? Or manually as part of the HTML in the browser? Where do you want to retrieve the images from?
 
Ganesh PS
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I want to retrieve images from Database(say ORACLE) and i want to display in client using jsp.

After i want to edit that images , i may draw circle or make anything in that images and i want to store it again into Database.

How can i do this in JSP???
What are the techniques are available??
Somebody said that its possible using applets.If i use applet, in that client side it may take more times to load....
So is there any technologies available to do this in JSP???
 
Ulf Dittmer
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Applets can do it, JSPs (or JavaScript) can't. You may wish to check out the canvas element., but it's not supported in all browsers, and I don't think that it allows you to save an image.
 
Sheriff
Posts: 13411
Firefox Browser VI Editor Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"Ganesh PS",
Please check your private messages.
 
reply
    Bookmark Topic Watch Topic
  • New Topic