你好,我的任务是用数字签名认证对pdf进行认证,并以pdf/a格式发布。我尝试使用tcpdf,但无法导入现有页面。所以我添加了fpdi,有点混合了它们:
require_once('./tcpdf/tcpdf.php');
require_once('./tcpdf/fpdi.php');
$pdf = new FPDI( );
//$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false, true);
$file = realpath("484.pdf");
$pagecount = $pdf->setSourceFile($file);
for($i = 1 ; $i <= $pagecount ; $i++){
$tpl = $pdf->importPage($i);
$size = $pdf->getTemplateSize($tpl);
$orientation = $size['h'] > $size['w'] ? 'P':'L';
$pdf->AddPage($orientation);
$pdf->useTemplate($tpl, null, null, $size['w'], $size['h'], true);
}
$pdf->SetCreator("Creator");
$pdf->SetTitle('123Titel');
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
$certificate = 'file://123.crt';
$info = array(
'Name' => '123test',
'Location' => 'place',
'Reason' => '123',
'ContactInfo' => '123',
);
$pdf->setSignature($certificate, $certificate, '123', '', 2, $info);
$pdf->SetFont('helvetica', '', 12);
$pdf->addEmptySignatureAppearance(0, 0, 0, 0);
$pdf->Output('test.pdf', 'F');
好吧,所以我可以用这个签名,但我不能把它做成pdf/a。什么决定pdf/a格式是
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false, true);
最后一个"真"。但我不能使用这个tcpdf函数,或者我得到了:
Call to undefined method TCPDF::setSourceFile() in...
所以我不得不使用$pdf = new FPDI( );
,它无法将pdf保存为pdf/a格式的
肯定有人知道我错过了什么,我也没有办法做什么了。
-我可以只使用tcpdf导入现有的pdf吗?如果可以,如何导入?-有没有其他方法可以使文件格式为pdf/a(我找不到)-任何提示
看来我可以用fpdi扩展tcpdf。不知怎么的,直到我把fpdi_bridge改为总是扩展tcpdf并更改,它才起作用
new FPDI();
至
new FPDI(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false, true);