views:

21

answers:

1

Hi,

I want to develop an online photo editing tool having features such as re-sizing, blurring, red eye etc. Can any body tell me how should I proceed? in Particular which technology should be used etc.

Thanks in advance

+1  A: 

Well you could either go for a pure javascript client with service side processing for the actual changes to the image.

If so you can use http://www.imagemagick.org/script/index.php on the server.

Or you use Java/Flash/Silverlight to build one that operates completely in the browser but there I have no recommendations for library.

Unless you have VERY good knowlege in image processing its no use trying to code your own processing code, use some existing library.

David Mårtensson