欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php pdf文件转图片

程序员文章站 2022-04-23 16:30:26
...
为什么会文件读取不到,路径 pdf文件权限都已设置
$PDF = './22.pdf';

$IM =new imagick();
   $IM->setResolution(120,120);
   $IM->setCompressionQuality(100);
   $IM->readImage($PDF);
   foreach($IM as $Key => $Var){
       $Var->setImageFormat('png');
       $Filename = './'.md5($Key.time()).'.png';
       if($Var->writeImage($Filename)==true){
           $Return[]= $Filename;
       }
   }

报错内容:Fatal error: Uncaught exception 'ImagickException' with message 'Failed to read the file' in

回复内容:

为什么会文件读取不到,路径 pdf文件权限都已设置

$PDF = './22.pdf';

$IM =new imagick();
   $IM->setResolution(120,120);
   $IM->setCompressionQuality(100);
   $IM->readImage($PDF);
   foreach($IM as $Key => $Var){
       $Var->setImageFormat('png');
       $Filename = './'.md5($Key.time()).'.png';
       if($Var->writeImage($Filename)==true){
           $Return[]= $Filename;
       }
   }

报错内容:Fatal error: Uncaught exception 'ImagickException' with message 'Failed to read the file' in

$PDF使用绝对路径呢

try {
    // read img
}  catch (ImagickException $e) {
    echo  exception;
}
相关标签: php