我收到错误!!!
这是我的代码
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.16
,Apache 2.4.4
,wampserver 2.4
,windows 7 32 bit
在我的系统上运行和ImageMagick 6.8.6
所以我的代码中的问题是什么它给我这个错误以及如何解决这个问题???