0
PDF 파일을 다른 PDF에 "병합"또는 "붙여 넣기"할 수 있습니까? 또는 대신 이미지 여야합니까?ZendPDF를 사용하여 다른 PDF에 PDF 파일 붙여 넣기
내가 붙여 넣기 또는 병합하려는 PDF는 완성 된 PDF의 하단에 나타납니다 것입니다 간단한 사진입니다 :
//Generate the "Original" PDF here..
function addReklam($reklamblad) //The PDF that should be merged into the PDF that is created above
{
//Count how many pages that has been created, and add it at the bottom of the PDF:
if($this->drawed_lines<52)
{
$this->active_page = $this->pdf->pages[2];
}
elseif($this->drawed_lines<92)
{
$this->active_page = $this->pdf->pages[3];
}
elseif($this->drawed_lines<132)
{
$this->active_page = $this->pdf->pages[4];
}
else
{
$this->active_page = $this->pdf->pages[5];
}
//$this->active_page = $this->pdf->pages[5]; // page 5 is the last
//Add it here???
}
고맙습니다. – user500468