如何使用 PHP 将多个单页 TIFF 合并为 PDF?

发布于 2024-10-30 06:22:46 字数 344 浏览 0 评论 0原文

我有大量 TIFF 图像,它们是单个扫描页。它们每个都是多页文档的一页。

我需要能够将此多页文档以 PDF 形式交付给我的用户。除了以正确的顺序将图像合并到一个文档中之外,不需要任何特殊的操作。

图像位置是通过 PHP 中的 MySQL 查询结果作为数组提供的,即:

c:\images\04\DUDDSDFF.tif,c:\images\04\EDFRTOFN.tif,c:\images\04\EFSDOSDG.tif

我当前工作的开发环境使用在 Win Server 2K3 上运行的 XAMPP。

任何建议/解决方案将不胜感激。

干杯

I have a massive number of TIFF images which are single scanned pages. They are each a page of multi-page documents.

I need to be able to deliver this multi-page document to my users as a PDF. Nothing special is required except combining the images into one document, in the right order.

The images locations are provided via the result of a MySQL query in PHP as an array, i.e:

c:\images\04\DUDDSDFF.tif,c:\images\04\EDFRTOFN.tif,c:\images\04\EFSDOSDG.tif

The current dev environment I am working in uses XAMPP running on Win Server 2K3.

Any suggestions/solutions would be most appreciated.

Cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

时光病人 2024-11-06 06:22:46

我之前做过类似的事情,我使用 Imagick() 类将 TIFF 格式转换为 PNG,然后使用 TCPDF 生成 PDF。

I have done done something similar before where I used the Imagick() class to convert form TIFF to PNG and then used TCPDF to generate the PDF.

∝单色的世界 2024-11-06 06:22:46
$pdfThumb = new \Imagick();
foreach ($tiffPics as $tiffPic) {
    $pdfThumb->addImage($new \Imagick($tiffPic));
}
$pdfThumb->writeImages($absolutePdfName, true);
$pdfThumb = new \Imagick();
foreach ($tiffPics as $tiffPic) {
    $pdfThumb->addImage($new \Imagick($tiffPic));
}
$pdfThumb->writeImages($absolutePdfName, true);
窝囊感情。 2024-11-06 06:22:46

@chariothy 的答案很接近,但实际上不起作用。我只是需要将多个 tif 文件合并为一个 pdf 文件,这是我的解决方案,经过测试且有效。

$pdf = new \Imagick();

foreach ($tif_file_paths as $file_path){

    $pdf->addImage(new \Imagick($file_path));
}

$pdf->writeImages('path/to/save/file/test-combined.pdf', true);

The answer from @chariothy is close but doesn't actually work. I just had a need to combine multiple tif files into a single pdf file and this is my solution, tested and working.

$pdf = new \Imagick();

foreach ($tif_file_paths as $file_path){

    $pdf->addImage(new \Imagick($file_path));
}

$pdf->writeImages('path/to/save/file/test-combined.pdf', true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文