这是 Adob​​e Postscript 吗?

发布于 2024-11-26 21:00:45 字数 570 浏览 0 评论 0原文

我正在进行大量文件转换,其中有几个恰好是“.dat”文件。当我打开它们时,我看到第一行是“%!PS-Adobe”。这是一个例子......

%!PS-Adobe
^M%c$in
^M/c$in {72.0 mul} def
^M%DEFINE MARGINS
^M/C$LMAR .2    c$in def            %LEFT MARGIN
^M/C$RMAR 8.4   c$in def            %RIGHT MARGIN
^M/C$TMAR 10.8  c$in def            %TOP MARGIN
^M/C$BMAR .2    c$in def            %BOTTOM MARGIN
^M/C$CF /Courier def        %saves /Courier as C$CF

等等...

我是否正确地假设这些确实是 Adob​​e Postscript 文件而不是 ** PDF? 将这些文件转换为 PDF 有多难?我正在考虑通过 ImageMagick 或其他方式使用命令行 perl,但现在我对交给我的内容有点困惑。

太感谢了... 珍妮

I am doing a massive set of file conversions and several of them happen to be ".dat" files. When I open them I see that the first line is "%!PS-Adobe". Here's an example.....

%!PS-Adobe
^M%c$in
^M/c$in {72.0 mul} def
^M%DEFINE MARGINS
^M/C$LMAR .2    c$in def            %LEFT MARGIN
^M/C$RMAR 8.4   c$in def            %RIGHT MARGIN
^M/C$TMAR 10.8  c$in def            %TOP MARGIN
^M/C$BMAR .2    c$in def            %BOTTOM MARGIN
^M/C$CF /Courier def        %saves /Courier as C$CF

etc...

Am I correct in assuming that these are indeed Adobe Postscript files and ** NOT ** PDFs?
How hard is it to convert these to PDF? I was thinking command line perl via ImageMagick or something but right now I'm a little stumped about what's been handed to me.

Thank you SO Much...
Janie

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

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

发布评论

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

评论(3

维持三分热 2024-12-03 21:00:46

是的,这就是后记。 PDF 将以“%PDF”开头。如果文本“^M”确实像这样存在,那么它是在 Mac 上创建的,并且在复制到其他平台或在其他平台上编辑时遇到了麻烦。 (也许是在将示例粘贴到 SO 编辑框中时?)它定义了一些名称中带有美元符号的变量,这使得它看起来很有趣。

Yup, that's Postscript. A PDF would start with "%PDF". If the text "^M" is literally there like that, then it was created on a Mac and got screwed up being copied to or edited on other platforms. (Maybe it was when the sample was pasted into the S.O. edit box?) It defines some variables with dollar signs in their names, which makes it look funny.

许一世地老天荒 2024-12-03 21:00:46

%!PS-Adobe 是符合 Postscript 文件的签名。 (不合格的 Postscript 可以使用 %!。)PDF 文件的签名是 %PDF-

%!PS-Adobe is the signature for conforming Postscript files. (Non-conforming Postscript can get by with %!.) The signature for PDF files is %PDF-.

凝望流年 2024-12-03 21:00:45

您可以使用 Ghostscript 和 pdfwrite 设备将这些文件转换为 PDF,或者为了简单起见,使用 Ghostscript 提供的 ps2pdf 脚本。

You can convert these to PDF using Ghostscript and the pdfwrite device, or for simplicity the ps2pdf script supplied with Ghostscript.

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