2014-04-07 4 views
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???   

    } 

답변

0

나의 추천은로드 할 Zend_Pdf::load() 방법을 사용하는 것입니다 "원본"PDF 파일을 Zend_Pdf의 로컬 인스턴스에 저장 한 다음 예제 코드와 같이 pages[] 배열을 사용하여 페이지에 액세스하고 drawImage() 등의 모든 표준 기능을 사용하여 업데이트 된 버전을 저장하기 전에 필요한 수정 작업을 수행 할 수 있습니다.

+0

고맙습니다. – user500468