Is there an error message?
Right, **how** is it not working?
In advance, everything you do should have an error trap, this helps answer this question. Add this to the bottom of every script, or as a php include:
function error($errstr) {
echo "<p>Error: $errstr</p>";
exit;
}
Then wherever you do **anything** add a simple or:
$image= new Imagick($path);
$width = $image->getImageWidth()
or error("Cannot get image width for $path"); $image->thumbnailImage($newwidth,$newheight)
or error("Cannot write image, w: $newwidth h: $newheight"); Since you're having troubles with all the tools, I will venture one guess, it's a path issue, confusion of full server paths and relative paths/urls, similar to the problems
here [webmasterworld.com] and
here [webmasterworld.com]. It seems to be more common in PHP than other languages.