I am looking for a script that can do this.
1. Upload image
swfupload can handle multiple uploads
2. Crop image to remove blank space
http://php.net/manual/en/function.imagecopy.php
3. Cut the image into 2 A and B
This can be done with imagecopy as well
4. Create 2 thumbnails from B
http://www.anyexample.com/programming/php/php_multiple_photo_thumbnail_generator.xml
5. Resize original (cropped) image to 1200 px
At the end of the day I have 3 images
a) original 1200px, b) …
