问题描述:
PHP使用Imagick的readImage方法读取pdf文件报错Failed to read the file
PHP实现pdf转图片所需:
- 安装ImageMagick插件
- 安装Ghostscript
<?php
//检查imagick是否安装成功
echo phpinfo();
//或者
if (!extension_loaded('imagick')) {
throw new Exception('没有安装imagick');
}
#检查ghostscript是否安装成功,shell模式
gs -v
读取文件部分源码:
/**
* 获取远程pdf文件url,下载到本地,读取pdf文件
*/
if (!$url) {
throw new Exception('远程地址不存在');
}
$pdf_file_name = end(explode('/', $url)); //临时文件名称
$pdf_file = self::$forderPath . DIRECTORY_SEPARATOR . $pdf_file_name; //文件路径
file_put_contents($pdf_file, file_get_contents($url));
if (!extension_loaded('imagick')) {
throw new Exception('没有安装imagick');
}
$filename = pathinfo($pdf_file)['filename'];
if (!file_exists($pdf_file)) {
throw new Exception('文件路径错误或者权限不够,没有读取到文件');
}
$im = new \Imagick();
$im->setResolution(110, 110); //设置分辨率
//报错位置,Failed to read the file 读取不到文件
$im->readImage($pdf_file);
部分报错信息(截取关键点):
Current allocation mode is local
GPL Ghostscript 9.26: Unrecoverable error, exit code 1
PHP Fatal error: Uncaught ImagickException: Failed to read the file
原本运行程序输出的内容只有 throw 的内容 Failed to read the file,查问题的方向一直是Imagick为啥读取不到pdf文件,这个问题也是偶尔发生,不是每个文件都读取不到,具体原因怎么也查不到;换个思路使用cli直接运行代码排查问题,最后发现是Ghostscript报错,异常问题退出导致读取文件失败。
经过各个搜索工具排查,发现Ghostscript 9.* 版本普遍存在异常退出情况,降级是不可能降级的,只能升级试试会不会解决了,如何升级请继续看!
处理流程:
- 去官网下载最新版本的ghostscript 点我去下载Ghostscript
- 安装方法
cd /opt
ls
ghostscript-10.02.1.tar.gz
tar -xzf ghostscript-10.02.1.tar.gz
cd ghostscript-10.02.1
./configure
make && make install
gs -v
#1.正常情况直接是新版本 10.02.1;2.异常情况一直还是老版本9.26
#安装后更新版本
echo $PATH #查看bin目录
/usr/local/nginx/sbin:/usr/local/php/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
cd /usr/local/bin/ #确认目录
ln -s ./gs ghostscript #更换版本
#基本就是新的版本了,如果还有问题,就重新打开一个shell 再去执行 gs -v
gs -v
结语:网络搜索到的大部分都是ghostscript未安装导致的结论,我这种情况不知道有没有人遇到过,蛮特殊的,记录一下分享一下解决办法