I have been through the whole Imagemagick thing. I am about to shoot myself in the face over it.

Is there an easy way to automatically create thumbs?

    I should add some info.. Win2k server

      Let me clarify. I need to read in image, have it modified and saved all from a PHP script.

      Imagemagick allows that functionality by adding its functions you can use in your PHP script. However, I am about sick of trying to make it work.

      Any help is appreciated.

        Well you can use your own command to resize a thumbnail using ImageMagick (something like)

        /path/to/convert -size 120x90 /path/to/full/size/image -resize 120x90 +profile * /path/to/where/you/want/thumbnail.jpg

        OR

        You can use the ImageMagick library that is located at http://pear.php.net

        OR

        You can use GD 2.0, You just need to compile it in to PHP and you can do image resizing, there are commands and examples on php.net

        Stressed

          Write a Reply...