我已经在我的 ubuntu 12.04 服务器上安装了 imagemagick、php5-imagick。现在如果我想使用
$image = new Image()
那里停了!
echo "1";
$img1 = new Imagick();
$img1 -> readImage("/the/absolut/path/to/image.png");
echo "1,3";
// Upload image
$img2 = new Imagick("dl/$md5");
echo "2";
$img1->compositeImage( $img2, imagick::COMPOSITE_COPYOPACITY, 0, 0 );
echo "3";
echo $img1;
但它只给出“1”。为什么?怎么了?