我正在使用 FPDF() 方法(来自 FPDI_Protection.php)导入现有 PDF 并应用密码保护。
我遇到的问题是原始 PDF 混合了纵向和横向页面(8.5“X11”和 11“X8.5”),而导入方法让您定义一次。我可以将新创建的 pdf 定义为 11"X11",这解决了其中一个方向裁剪的问题,但这对于打印目的并不理想,因为 PDF 被缩放并左对齐,导致可读性/打印输出不佳。
在循环遍历原始文档时,是否可以使用任何类型的例程来检测原始尺寸并即时设置新的页面方向?
function pdfEncrypt ($origFile, $password, $destFile) // RESPONSIBLE FOR ADDING PASSWORD PROTECTION TO PDF FILES
{
require_once('fpdi/FPDI_Protection.php');
$pdf = new FPDI_Protection();
// set the format of the destinaton file, in our case 6×9 inch
$pdf->FPDF('P', 'in', array('11','11'));
//calculate the number of pages from the original document
$pagecount = $pdf->setSourceFile($origFile);
// copy all pages from the old unprotected pdf in the new one
for ($loop = 1; $loop <= $pagecount; $loop++)
{
$tplidx = $pdf->importPage($loop);
$pdf->addPage();
$pdf->useTemplate($tplidx);
}
// protect the new pdf file, and allow no printing, copy etc and leave only reading allowed
$pdf->SetProtection(array('print'), $password, '');
$pdf->Output($destFile, 'F');
return $destFile;
}
或者,是否有更简单的方法可以使用 php 向现有 pdf 添加密码?