图像魔术功能在读取文件时出现致命错误

时间:2014-06-06 11:27:20

标签: php imagemagick

我收到错误!!!

fatal error

这是我的代码

error_reporting(1);
ini_set('display_errors', 'on');
require_once "html2pdf/html2pdf.class.php";
$html_content = "<html lang='en'>
    <head> <title> Image </title> </head>
    <body> <h1> This is test, Now what do you want??? </h1> </body>
</html>";

$html2pdf = new HTML2PDF('P', 'A4');
$html2pdf->WriteHTML($html_content);
$file = $html2pdf->Output('temp.pdf', 'F');

$im = new imagick();
$im->setResolution(300,300);
$im->readimage('temp.pdf[0]');
$im->setImageFormat('jpeg');
$im->writeImage('thumb.jpg');
$im->clear();
$im->destroy();

在此行代码$im->readimage('temp.pdf[0]');处收到错误 我已搜索并找到此链接Convert PDF to JPEG with PHP and ImageMagick,但此代码无法使用wamp服务器PHP Version 5.4.16Apache 2.4.4wampserver 2.4windows 7 32 bit在我的系统上运行和ImageMagick 6.8.6所以我的代码中的问题是什么它给我这个错误以及如何解决这个问题???

0 个答案:

没有答案