使用 PHP 将多页 PDF 的所有页面转换为图像会导致图像中出现重复结果

发布于 2024-12-12 02:07:42 字数 1048 浏览 0 评论 0原文

所以我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

早乙女 2024-12-19 02:07:42

Imagick 构造函数从您提供的文件加载图像。当您运行 readImage() 时,它会再次加载它们。你只需要这两者之一。

The Imagick constructor loads the image from the file you provide. When you run readImage(), it loads them again. You only need one of those two.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文