Hi all; i write a little script for get images from a form and then save them in mysql.
One of the things is modify the size of the image.. say 640x480. Using imagemagic with a command like:
exec("/usr/../bin/convert -geometry 640x480 $form_data $form_data");
the image is resized ($image_data is the temporal filename)
The problem is that the montage program
exec(/usr../montage -geometry 640x480 $form_data $form_date) don't work. It cant modify the temporal file uploaded. What can it be??
help!!!