I managed to get this working on IIS 5 on Windows 2000 Server.
I have a few questions
I changed the line
PHP Code:
system("$galleryconvert -geometry '160x120>' $path -flatten -quality '75' JPEG:$thumbname");
to
PHP Code:
system("$galleryconvert -geometry 160x120 $path -flatten -quality 75 JPEG:$thumbname");
as the convert was creating 0 length files.
What are the ' and > for ?
I also had to //comment out the
PHP Code:
if ($filesize != 0)
line as the test was always failing.
Any idea why?