在PDF文件的特定位置获取文本

时间:2016-05-16 06:19:49

标签: php pdf fpdf fpdi

我正在研究如何将pdf_file1合并到pdf_file2。我需要将pdf_file1合并到文件2中的特定页面。为了能够做到这一点,我需要在pdf_file2的标题中找到特定的关键字

EX:如果(keyword == header_of_pdf_file2)那么     合并文件

这是我目前合并2 pdf的代码

<?php
require_once('fpdf.php');
require_once('fpdi.php');

$pdf = new FPDI();

$pdf->setSourceFile("pdf_file1");
$tplIdxA = $pdf->importPage(1, '/MediaBox');

$pagecnt=$pdf->setSourceFile("pdf_file2.pdf");
$x=1;
  for($i=0; $i<$pagecnt; $i++){
$tplIdxB = $pdf->importPage(intval($i+1), '/MediaBox');
$pdf->addPage();
// place the imported page of the first document:
if($i==0){
$pdf->useTemplate($tplIdxA, 0, 0, 210,300);
// place the imported page of the snd document:
}
$pdf->useTemplate($tplIdxB, 0, 0, 200,295);
    $x=($i+1)*20;
 }

$pdf->Output();

0 个答案:

没有答案