保护您的 PostScript 文件免于转换为 PDF

作者:Mitch Frazier

如果您曾经使用过可填写的 PDF 表单,您可能已经注意到,填写后无法保存表单的副本。 您可能很狡猾地尝试将表单打印到文件(PostScript),然后使用ps2pdf将其转换为 PDF。 但是,这也不起作用,因为ghostscript会给您一个错误,提示该文件无法被 重新蒸馏。 本文向您展示如何使用相同的技术保护您自己的 PostScript。

保护这些 PostScript 文件的 PostScript 代码如下

%ADOBeginClientInjection: DocumentSetup Start "No Re-Distill"
%% Removing the following eleven lines is illegal, subject to the Digital Copyright Act of 1998.
mark currentfile eexec
54dc5232e897cbaaa7584b7da7c23a6c59e7451851159cdbf40334cc2600
30036a856fabb196b3ddab71514d79106c969797b119ae4379c5ac9b7318
33471fc81a8e4b87bac59f7003cddaebea2a741c4e80818b4b136660994b
18a85d6b60e3c6b57cc0815fe834bc82704ac2caf0b6e228ce1b2218c8c7
67e87aef6db14cd38dda844c855b4e9c46d510cab8fdaa521d67cbb83ee1
af966cc79653b9aca2a5f91f908bbd3f06ecc0c940097ec77e210e6184dc
2f5777aacfc6907d43f1edb490a2a89c9af5b90ff126c0c3c5da9ae99f59
d47040be1c0336205bf3c6169b1b01cd78f922ec384cd0fcab955c0c20de
000000000000000000000000000000000000000000000000000000000000
cleartomark
%ADOEndClientInjection: DocumentSetup Start "No Re-Distill"

因此,要保护您自己的 PostScript 文件免于转换为 PDF,您所需要做的就是将此代码插入到 PostScript 中,在%BeginSetup%EndPrologPostScript 的行之后。 以下脚本对命令行上传递给它的 PostScript 文件执行此操作

#!/bin/bash

if [[ $# -ne 1 ]]; then
	echo "Usage: $0 PSFILE"
	exit 1
fi
psfile=$1

nl='
'
protect='
\%ADOBeginClientInjection: DocumentSetup Start "No Re-Distill"
\%\% Removing the following eleven lines is illegal, subject to the Digital Copyright Act of 1998.
mark currentfile eexec
54dc5232e897cbaaa7584b7da7c23a6c59e7451851159cdbf40334cc2600
30036a856fabb196b3ddab71514d79106c969797b119ae4379c5ac9b7318
33471fc81a8e4b87bac59f7003cddaebea2a741c4e80818b4b136660994b
18a85d6b60e3c6b57cc0815fe834bc82704ac2caf0b6e228ce1b2218c8c7
67e87aef6db14cd38dda844c855b4e9c46d510cab8fdaa521d67cbb83ee1
af966cc79653b9aca2a5f91f908bbd3f06ecc0c940097ec77e210e6184dc
2f5777aacfc6907d43f1edb490a2a89c9af5b90ff126c0c3c5da9ae99f59
d47040be1c0336205bf3c6169b1b01cd78f922ec384cd0fcab955c0c20de
000000000000000000000000000000000000000000000000000000000000
cleartomark
\%ADOEndClientInjection: DocumentSetup Start "No Re-Distill"
'
protect="${protect//$nl/\\n}"

if grep --silent '^%%BeginSetup' $psfile; then
	sed -e "/\%\%BeginSetup/a\\$protect" $1 
else
	sed -e "/\%\%EndProlog/a\\$protect" $1 
fi

要对其进行测试,请获取一个未受保护的 PostScript 文件,将其转换为受保护的 PostScript 文件,然后尝试将其转换为 PDF

$ ps2pdf unprotected.ps
$ sh prps.sh unprotected.ps >protected.ps
$ ps2pdf protected.ps
This PostScript file was created from an encrypted PDF file.
Redistilling encrypted PDF is not permitted.
Error: /undefined in --eexec--
Operand stack:
   --nostringval--   --dict:98/200(L)--   quit
Execution stack:
   %interp_exit   .runexec2   --nostringval--   ...
Dictionary stack:
   --dict:1169/3371(ro)(G)--   --dict:0/20(G)--  ...
Current allocation mode is local
Last OS error: 2
GPL Ghostscript 8.62: Unrecoverable error, exit code 1

正如您所看到的,您可以转换unprotected.ps到 PDF 而没有任何问题,但是一旦您添加了超级秘密保护代码并创建了protected.ps,您将无法再转换为 PDF。

Mitch Frazier 是 Emerson Electric Co. 的嵌入式系统程序员。 自 2000 年代初期以来,Mitch 一直是 *Linux Journal* 的贡献者和朋友。

加载 Disqus 评论