在windows下安裝完後提示:
Fatal error: Trying to clone an uncloneable object of class Imagick in C:wwwhxpdf_to_png.php on line 17
使用IIS和Apache都會有這個提示。經過多次測試後,發現兩種解決方法:
1.php.ini中; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
zend.ze1_compatibility_mode = Off
預設為On,改為Off後,即可解決。
2.使用imagick::...這種方法呼叫。
即$im->setResolution(120, 120);可以改寫為:
imagick::setResolution(120, 120);
如果其它擴展出現這類錯誤,一般也是可以使用這兩種方法解決的。
附pdf轉png的程式碼片段:
複製碼 程式碼如下:
if (!extension_loaded('imagick') ) {
exit('no imagick');
return false;
}
if (!file_exists($pdf)) {
return false;
}
$im = new Imagick();
$im->setResolution( 120, 120);
$im->setCompressionQuality(100);
$im->setImageFormat('png');
$im->writeImage($filename);
$im->readImage($filename);
$im->writeImage($filename) ;
return $filename;
}
以上就介紹了cloneable Trying to clone an uncloneable object of class Imagic的解決方法,包括了cloneable方面的內容,希望對PHP教程有興趣的朋友有所幫助。