cloudframework-io / tcpdi_cf
TCPDI_CF是一个PHP类,用于将PDF导入并与TCPDF tecnickcom/tcpdf:6.4.1和pop/tcpdi配合使用,由cloudframework改进,以便在签署PDF时包含自定义属性。
1.0.4
2023-03-13 03:52 UTC
Requires
- php: >=5.3.0
- tecnickcom/tcpdf: ^6.3
README
Composer ready TCPDI基于https://github.com/propa/tcpdi
用于TCPDF的PDF导入器,基于FPDI。需要pauln/tcpdi_parser和FPDF_TPL,这些文件包含在存储库中。
安装
在composer.json中链接包,例如
composer require https://github.com/cloudframework-io/tcpdi_cf
使用方法
使用方法基本上与FPDI相同,只是使用TCPDI而不是FPDI。它还有一个"setSourceData()"函数,可以接受原始PDF数据,适用于文件不在磁盘上或无法由TCPDI读取的情况。
// Create new PDF document. include_once ($this->core->system->root_path.'/vendor/cloudframework-io/tcpdi_cf/tcpdi.php'); $pdf = new TCPDI_CF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); // Add a page from a PDF by file path. $pdf->AddPage(); $pdf->setSourceFile('/path/to/file-to-import.pdf'); $idx = $pdf->importPage(1); $pdf->useTemplate($idx); $pdfdata = file_get_contents('/path/to/other-file.pdf'); // Simulate only having raw data available. $pagecount = $pdf->setSourceData($pdfdata); for ($i = 1; $i <= $pagecount; $i++) { $tplidx = $pdf->importPage($i); $pdf->AddPage(); $pdf->useTemplate($tplidx); } // Create new PDF document. $pdf = new TCPDI(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); // Add a page from a PDF by file path. $pdf->setSourceFile('/path/to/file-to-import.pdf'); // Import the bleed box (default is crop box) for page 1. $tplidx = $pdf->importPage(1, '/BleedBox'); $size = $pdf->getTemplatesize($tplidx); $orientation = ($size['w'] > $size['h']) ? 'L' : 'P'; $pdf->AddPage($orientation); // Set page boxes from imported page 1. $pdf->setPageFormatFromTemplatePage(1, $orientation); // Import the content for page 1. $pdf->useTemplate($tplidx); // Import the annotations for page 1. $pdf->importAnnotations(1);
TCPDI_PARSER
用于TCPDI的解析器,基于TCPDF_PARSER。支持PDF版本高达v1.7。