使用 PHP 将多页 PDF 的所有页面转换为图像会导致图像中出现重复结果
所以我使用 imagick 将 PDF 转换为图像。对于单页 PDF 来说一切都很好,但我在处理多页 pdf 时遇到了障碍。
我在这里找到了一个有关如何处理多个页面的示例:http://php. net/manual/en/function.imagick-appendimages.php 所以我采用了该代码:
$im = new Imagick($src);
$im->readImage($src);
$im->resetIterator();
$ima = $im->appendImages(true);
$ima->setImageFormat('jpg');
header("Content-Type: image/jpeg");
print $ima;
它的工作原理是它为 pdf 的每一页生成一个图像,问题是 PDF 在图像中显示两次。因此,三页 PDF 显示为 6 页的单个图像。
这是一个 PDF 示例 以及使用上述代码创建的结果图像。
我在做什么导致这种情况发生?
解决方案:
根据 tandu 的回答,这成功了
$im = new Imagick($src);
$im->resetIterator();
$ima = $im->appendImages(true);
$ima->setImageFormat('jpg');
header("Content-Type: image/jpeg");
print $ima;
So I am using imagick to convert a PDF into an image. All works well for single page PDFs but I ran into a snag with a multi page pdf.
I found an example on how to deal with multiple pages here: http://php.net/manual/en/function.imagick-appendimages.php so I took that code:
$im = new Imagick($src);
$im->readImage($src);
$im->resetIterator();
$ima = $im->appendImages(true);
$ima->setImageFormat('jpg');
header("Content-Type: image/jpeg");
print $ima;
This works in that it produces an image with each page of the pdf the problem is that the PDF is displayed twice in the image. So, a three page PDF is displayed as a single image of 6 pages.
Here is an example PDF
and the resulting image created with the above code.
What am I doing that is causing this to happen?
Resolution:
Based on tandu's answer this did the trick
$im = new Imagick($src);
$im->resetIterator();
$ima = $im->appendImages(true);
$ima->setImageFormat('jpg');
header("Content-Type: image/jpeg");
print $ima;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Imagick
构造函数从您提供的文件加载图像。当您运行 readImage() 时,它会再次加载它们。你只需要这两者之一。The
Imagick
constructor loads the image from the file you provide. When you runreadImage()
, it loads them again. You only need one of those two.