这是 Adobe Postscript 吗?
我正在进行大量文件转换,其中有几个恰好是“.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
等等...
我是否正确地假设这些确实是 Adobe 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,这就是后记。 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.
%!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-
.您可以使用 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.