Hello, I am working on an online photo manipulation project. Users load images, modify them, and save modifications. Later, a high quality version of the image is printed. Due to specification constraints, the printing process must be performed by php.
I've been looking, without success, for a way to bind actionscript modifications with php. For instance, the user applies some saturation modifications to an image, and saves them. Since we want non-destructive image editing, the modifications are saved in a database(actually, the corresponding ColorMatrixFilter values). Later, when the user loads his images again, the modifications are loaded and reapplied to the image. When launching the print job, thousands of high quality processed image must be handled, in php. So, my question is : can anyone point me in some direction on how to make a bridge between these ColorMatrixFilter values to a graphic process, writen in php (using GD or anything else for example) ? In my idea, the php script would load the modifications from the table, maybe use a convert script, and then apply the filters to the high def image, before printing. Thank you for your time, and possible answers. Sorry for my english.

