gpt4 book ai didi

php - 使用 imagick 使用 PHP 将 PDF 转换为 JPG 适用于平面 pdf,但在有多个图层时失败

转载 作者:可可西里 更新时间:2023-11-01 00:59:43 24 4
gpt4 key购买 nike

我有一个用于 pdf 上传的内部作业管理上传页面。该脚本将 pdf 的副本保存到一个目录,然后使用 imagick 制作一个 jpg 副本,用于在另一页上显示。大多数使用脚本上传的 PDF 都能完美运行(尽管速度有点慢且占用内存……但仍能按预期运行)。我们从事服务业务,很多上传的都是 pdf 图纸集。从 cad 导出的图纸通常有一大堆图层,这些文件会失败并显示以下消息:

Fatal error: Uncaught exception 'ImagickException' with message 'Postscript delegate failed `../../Dropbox/Job_Docs/15-0273 La Bella, Cassandra/15-0273 La Bella, Cassandra-layout 6-22-2015 55876fa96aa00.pdf': No such file or directory @ pdf.c/ReadPDFImage/611' in /home/solargai/public_html/dash3/upload.php:79 Stack trace: #0 /home/solargai/public_html/dash3/upload.php(79): Imagick->__construct('../../Dropbox/J...') #1 {main} thrown in /home/solargai/public_html/dash3/upload.php on line 79

因此,如果我将这些问题 pdf 之一保存到我的桌面,然后通过 pdf 打印机(在本例中为可爱的 pdf)重新保存它,然后尝试再次上传它,它工作正常。所以这当然就是为什么我假设它是层......因为当我使用 pdf 打印机时它们被剥离并压平。

起初我以为文档的大小是相关的,但后来我意识到我可以循环浏览近 100 页而不会失败(绘图集通常大约 15 页左右)。

    <?php

set_time_limit(0);
ignore_user_abort(1);

session_start();



$uuid = uniqid();
$today = date("n-j-Y");

$jobname = $_POST['jobname'];
$_SESSION['jobname'] = $jobname;
$uploadType = $_POST['uploadType'];
$writeSTATE = $_POST['writeSTATE'];
$fileName = $jobname."-".$uploadType." ".$today." ".$uuid;

$fileNamePDF = $fileName.".pdf";
$path = "../dash2/jobinfoDOCS/".$jobname."/".$uploadType."/";
$DOCSpath = "../../Dropbox/Job_Docs/".$jobname."/";

//////remove directory
if($writeSTATE == "overwrite") {

$filesD = glob($path . '*', GLOB_MARK);
foreach ($filesD as $fileD) {
if (substr($fileD, -1) == '/')
delTree($fileD);
else
unlink($fileD);
}
rmdir($path);

}
if (!file_exists($path)) {
mkdir($path, 0777, true);
//echo "created folder for path: " . $path;
}
if (!file_exists($DOCSpath)) {
mkdir($DOCSpath, 0777, true);
//echo "created folder for path: " . $DOCSpath;
}



//echo "upload type: " . $_POST['uploadType'] . "<br>";
//echo "path: " . $path . "<br>";

//echo $_FILES['layout']['tmp_name'];
if (is_uploaded_file($_FILES['layout']['tmp_name'])) {
if ($_FILES['layout']['type'] != "application/pdf") {
//echo "<p>Class notes must be uploaded in PDF format.</p>";
} else {
$name = $_POST['name'];
$result = move_uploaded_file($_FILES['layout']['tmp_name'], $DOCSpath.$fileNamePDF);

///write pdf to jpg

// if ($result == 1) echo "<p>File successfully uploaded.</p>";
//else echo "<p>There was a problem uploading the file.</p>";
} #endIF
} #endif

$fi = new FilesystemIterator($path, FilesystemIterator::SKIP_DOTS);
//printf("There were %d Files", iterator_count($fi));
$fileCOUNT = iterator_count($fi);
//echo $fileCOUNT;

$PDFpath = $DOCSpath.$fileNamePDF;

$img = new imagick($PDFpath);
$img = $img->flattenImages();
$img->setResolution(175,175);
$number = $img->getnumberimages();
for($i=0;$i<$number;++$i)
{
$count = $i + $fileCOUNT;
$JPGpath = $path.$count."--".$fileName.".jpg";
//echo $PDFpath."AND".$JPGpath;
$img->readImage("{$PDFpath}[".$i."]");
$img->writeImage("{$JPGpath}");
}
header("location:index.php");
?>

我尝试在“new imagick”下添加“flattenImages”,但没有任何帮助。我还尝试隔离函数并使用文件 tmp 为 imagick 函数创建。我也尝试了很多其他的东西,现在我整个周末都在搞乱它,我只是被困住了,所以任何帮助都会非常感激。

如果有助于说明导致问题的分层 pdf 链接如下: https://www.dropbox.com/s/unauyb0rzpk0nup/drawing_with_layers.pdf?dl=0

然后这是通过cute pdf writer运行成功上传的副本 https://www.dropbox.com/s/dv0bt7x222s93mi/no_layers.pdf?dl=0

最佳答案

Imagick 调用 ImageMagick 库来完成它对图像的所有处理。 Image Magick 库本身并不处理所有图像,它可以将它们的渲染委托(delegate)给另一个库来处理它们。对于 PDF 文件,它通常委托(delegate)给 GhostScript 库。

在命令行中,如果您运行 convert -list configure,您应该能够在 DELEGATES 条目下看到 ImageMagick 使用了哪些委托(delegate)。

您似乎遇到了 Ghostscript 中的错误。尝试通过使用以下命令直接调用 GS 版本 8.70 来转换 PDF:

gs -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=1 -sDEVICE=pngalpha -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -r150 -sOutputFile=foo-%d.png drawing_with_layers.pdf

给出错误:

GPL Ghostscript 8.70: Some glyphs of the font ArialNarrow-Bold requires a patented True Type interpreter. GPL Ghostscript 8.70: Some glyphs of the font ArialNarrow requires a patented True Type interpreter. Error: /invalidaccess in --run-- Operand stack:
--dict:8/17(L)-- F4 56.954 --dict:5/5(L)-- --dict:5/5(L)-- ArialMT --dict:11/12(ro)(G)-- --nostringval-- CIDFontObject
--dict:6/6(L)-- --dict:6/6(L)-- 178279 --dict:6/6(L)-- --nostringval-- PDFCIDFontName ArialMT Execution stack: %interp_exit .runexec2 --nostringval-- --nostringval--
--nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 1862 1 3 %oparray_pop 1861 1 3 %oparray_pop 1845 1 3
%oparray_pop --nostringval-- --nostringval-- 2 1 13
--nostringval-- %for_pos_int_continue --nostringval-- --nostringval-- --nostringval-- --nostringval-- %array_continue --nostringval-- false 1 %stopped_push --nostringval-- %loop_continue --nostringval-- --nostringval-- --nostringval--
--nostringval-- --nostringval-- --nostringval-- %array_continue --nostringval-- --nostringval-- --nostringval-- --nostringval-- --nostringval-- Dictionary stack: --dict:1154/1684(ro)(G)-- --dict:1/20(G)-- --dict:75/200(L)-- --dict:75/200(L)-- --dict:106/127(ro)(G)-- --dict:286/300(ro)(G)-- --dict:22/25(L)-- --dict:4/6(L)-- --dict:21/40(L)-- --dict:1/1(ro)(G)-- Current allocation mode is local GPL Ghostscript 8.70: Unrecoverable error, exit code 1

升级到 GhostScript 9.16 没有出现这个问题,PDF 转换成功。

(顺便说一下,您的 PDF 没有背景层,尽管有些文本被抗锯齿为白色。)

关于php - 使用 imagick 使用 PHP 将 PDF 转换为 JPG 适用于平面 pdf,但在有多个图层时失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30972426/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com