Hello!
If one were to create a site where users could upload images in various formats (JPG, PDF, etc.) and process that image into one monochrome GIF copy and a PDF, what would be the best infrastructure for doing so?
I know that there is already a question about image processing infrastructure, but I would like to know what specific method would be recommended for PHP.
Should I script a PHP background job? Should I store the list of images to process in a database? Should the processing of the images take place in the uploading PHP script?
Thanks in advance for any help.