views:

14

answers:

1

Hi!

Currently I'm searching for a free solution to simple edit some photos at the users browser. Resizing and Cropping would be mandatory. I'm not searching for an online service (for example SUMO or PIXLR which are great), because I want to include the software into a WYSIWYG Editor.

JavaScript would be really nice, but it would have to work in IE 8. Pixastic is a great example, but works only in modern browsers (not IE 8 :-/)

Any suggestions what I could use?

Maybe setting up some kind of image processing service with ImageMagick and communicating with it through AJAX could also be an solution? Has anyone gained some experience with such a solution?

+1  A: 

If you are open to server side image processing, then you can look at some basic image transformations that Google app engine provides.

http://code.google.com/appengine/docs/python/images/usingimages.html#Transform

Jayesh
I'm not able to use any Google Services, but I will build this on my own. It will be a simple webservice with image magick.
echox