gpt4 book ai didi

php - 在 php 脚本中使用 ghostscript

转载 作者:行者123 更新时间:2023-12-05 09:20:49 26 4
gpt4 key购买 nike

将 Laravel 用于我正在使用的网络应用 https://github.com/clegginabox/pdf-merger合并 pdf 文件并在尝试将两个 pdf 合并在一起时遇到以下错误,其中一个超过 1.4 版:

Exception in pdf_parser.php line 133:

This document (C:\path-to-doc\file.pdf) probably uses a compression technique
which is not supported by the free parser shipped with FPDI.
(See https://www.setasign.com/fpdi-pdf-parser for more details)

in pdf_parser.php line 133

我按照以下答案中的建议使用 ghostscript 将任何超过 1.4 的 pdf 转换为 1.4,以便合并工作。

FPDF error: This document (testcopy.pdf) probably uses a compression technique which is not supported by the free parser shipped with FPDI

我已成功安装 ghostscript 并将其添加到我的路径中。为了进行测试,我有一个名为 test.pdf 的 1.5 版示例 pdf 文件,我从 Windows 终端运行以下命令:

gswin64 -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dNOPAUSE -dQUIET -dBATCH -sOutputFile=new-file.pdf 测试文件.pdf

我的 new-file.pdf 和 1.4 版一样好。

现在我有以下 php 脚本,当从网络浏览器运行时,它会持续加载。如果我让它运行一会儿,有时会创建一个新文件,但它的大小大约为 3kb 并且是空白的,而且原始 pdf 文件有时也会变成空白?!

<?php

shell_exec( "gswin64 -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dNOPAUSE -dQUIET -dBATCH -sOutputFile=new-file.pdf test-file.pdf");

echo 'done';

知道我做错了什么吗?

最佳答案

正要发布这个问题并想通了,所以为了其他人的利益继续回答。

我在 super 用户 https://superuser.com/questions/200188/reading-a-pdf-file-for-testing-in-ghostscript#answer-200784 上阅读了这个答案

这部分是灯泡

If you use Ghostscript on Windows, you'll have two executables:

  1. gswin32c.exe
  2. gswin32.exe

The first one is to be run from inside a 'DOS box' (i.e. cmd.exe window) -- either interactively or not. It prints all stderr/stdout messages into the cmd.exe window and also expects any input commands to be typed in there.

The second one opens a separate Window for "interactivity': prints stderr/stdout to separate window, and expects commands there.

所以我更改了我的 php 脚本以使用 gswin64c 并从命令的响应中输出文本:

$output = shell_exec( "gswin64c -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dNOPAUSE -dQUIET -dBATCH -sOutputFile=new-file.pdf test.pdf");

echo "<pre>$output</pre>";

这表明我引用了错误的文件名,即 test-file.pdf 而不是 test.pdf

Error: /undefinedfilename in (test-file.pdf)
Operand stack:

Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push
Dictionary stack:
--dict:1192/1684(ro)(G)-- --dict:0/20(G)-- --dict:78/200(L)--
Current allocation mode is local
Last OS error: No such file or directory

更新文件名后一切正常!

更新

回应 Marsha 在问题中的评论...

What do you mean by "added it to my path"? Thanks in advance.

当您将一个可执行文件或一组可执行文件的位置添加到您的 PATH 环境变量时,它允许从任何位置从命令行调用可执行文件。例如,您可以在将 ghostscript 添加到路径后从 C:\youruser\Desktop 调用 ghostscript,而不是在 ghostscript 文件所在的文件夹中 C:\gs\bin 或者不管它是什么。

有时您安装的软件会自动为您执行此操作,有时您需要自己手动执行(例如 ghostscript)。

如何将可执行文件添加到 PATH 环境变量:

  1. 我的电脑
  2. 属性
  3. 高级系统设置
  4. 环境变量
  5. 然后将可执行文件附加到用户变量/PATH 或系统变量/路径中现有值的末尾 - 如果您使用用户变量,它将仅适用于您的用户,如果您使用系统变量,它将适用于所有用户

提示:

  • 如果按 windows 键 + pause 可以跳到第 3 步
  • 您必须用分号分隔路径变量中的新条目 ;

如果您在 google 上搜索“将 exe 添加到我的路径窗口”之类的内容,我相信您会找到大量这方面的信息。希望这对您有所帮助!

关于php - 在 php 脚本中使用 ghostscript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35733645/

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