我需要使用 PHP 中的 Ghostscript 为 PDF 文件提供密码。我有一个名为sample.pdf
. 我需要保护它并调用它output.pdf
。我搜索了很多,得到了以下几行代码。但这对我没有帮助。我的代码有错误吗?任何建议将不胜感激..
exec("gs -dNOPAUSE -dBATCH -sDEVICE=pswrite -sOutputFile=File.ps sample.pdf");
exec("gs -dNOPAUSE -dBATCH -sOwnerPassword=pwd1 -sUserPassword=pwd2 -sDEVICE=pdfwrite -sOutputFile=output.pdf File.ps");