• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

php实现pdf转图片

php 搞java代码 3年前 (2022-08-01) 44次浏览 已收录 0个评论
文章目录[隐藏]

php实现pdf转图片所需

    1. Imagick拓展
    1. php的spatie/pdf-to-image插件包
    1. Ghostscript软件

一:Imagick拓展装置

参考:PHP的Imagick拓展装置

二:php的spatie/pdf-to-image插件包装置

composer require spatie/pdf-to-image

三:Ghostscript软件装置

1:Ghostscript下载地址:Ghostscript下载地址

2:装置Ghostscript

tar -xzf ghostscript-9.56.1.tar.gz
cd ghostscript-9.56.1
./configure
make && make install

3:配置Ghostscript

批改/etc/ImageMagick-6/policy.xml文件
(1):将pattern=”{PS,PDF,XPS}”这行批改成

<policy domain="module" rights="read|write" pattern="{PS,PDF,XPS}" />

(2):将pattern=”PDF”批改成

<policy domain="coder" rights="read|write" pattern="PDF" />

四:实现pdf转图片实例

$pdfPath = 'XXX';//PDF地址
$pdfToImg = new \Spatie\PdfToImage\Pdf($pdfPath);
$pages = $pdfToImg->getNumberOfPages();
$fullPath = 'XXX';//图片保留地址
$imgs = [];
for ($i = 1; $i <= $pages; $i++) {
    $imgFile =$i . '.png';
    $pdfToImg->setPage($i)->saveImage($fullPath . '/' . $imgFile);
    $imgFiles[] =  $fullPath . $imgFile;
}

return $imgFiles;//图片地址数组

依据如上就能够实现将pdf转成图片,多张pdf会转成多张图片


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:php实现pdf转图片
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址