21,891
社区成员
发帖
与我相关
我的任务
分享
$file_dir = '/mnt/disk1/wwwroot/XXXXX/upload_tmp/test.pdf';
#生成PDF
$html = ‘test’;
$pdf = new tcpdf('P', 'mm', 'A4', true, 'UTF-8', false);
$pdf->SetFont('stsongstdlight', '', 14);
$pdf->AddPage();
$pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true);
$file = $pdf->Output($file_dir, 'F');
#转成 images
$im = new imagick($file_dir); # 执行这句报错
$im->setImageFormat( "jpg" );
$img_name = 'test.jpg';
$im->setSize(800,600);
$im->writeImage('/mnt/disk1/wwwroot/www.glitzcloud.com/upload_tmp/'.$img_name);
$im->clear();
$im->destroy();