生成Pdf文件(* file1),并在* file1内附加另一个动态生成的TCPDF pdf文件

时间:2019-06-04 13:41:05

标签: php codeigniter pdf tcpdf

我在名为print_personprint_section的函数中有2个

print_person函数生成一个pdf文件,该文件是个人资格证书的报告。 print_section会生成包含部分详细信息和人员列表的pdf文件。

如果可能的话,在生成节报告时,我想生成每个个人报告,并将其作为pdf附件附加在节报告中,而不必先将其保存到文件中。

我正在使用TCPDF作为codeigniter中的库来生成报告。


//this below is inside the "print_section" report function to print each person


foreach ($personnel_lst as $key => $pers){

...
//printing person
...

//parameters = $id = id of the person, 'E'= output option for TCPDF output function.
$pers_file = $this->print_person($id, 'E');
$file = chunk_split($pers_file);
$pdf->Annotation(1, 1, 0, 0, '', array('Subtype'=>'FileAttachment', 'Name' => 'Paperclip', 'FS' => $pers_file ));

}//end for each

0 个答案:

没有答案