1

データベースからの値を入力する必要のあるスポットを含むPDFファイルが提供されました。FPDIと一緒にFPDFライブラリを使用していますが、テキストを配置するのに試行錯誤のようです...テキストを正しい場所に配置するには、X座標とY座標をいじる必要がありました。それを行うのは面倒で非効率的な方法のようです。私はここで何かが欠けていますか?

 require_once('fpdf/fpdf.php');
 require_once('fpdi/fpdi.php');

 // initiate FPDI  
 $pdf = new FPDI();  
 // add a page
 $pdf->AddPage();  
 // set the sourcefile  
 $pdf->setSourceFile('1.pdf');  
 // import page 1  
 $tplIdx = $pdf->importPage(1);  
 // use the imported page and place it at point 10,10 with a width of 200 mm   (This is    the image of the included pdf)
 $pdf->useTemplate($tplIdx, 10, 10, 200);  
 // now write some text above the imported page
 $pdf->SetTextColor(0,0,0);

 $pdf->SetFont('Arial','B',20);  
 $pdf->SetXY(85, 50);  
 $pdf->Write(0, "Johnny Walker");
 $pdf->SetFont('Arial','B',11);
 $pdf->SetXY(92, 69); 
 $pdf->Write(0, "3"); 
 $pdf->SetFont('Arial','B',10);
 $pdf->SetXY(114, 76); 
 $pdf->Write(0, 'Ventilation Management of the Amyotropic Lateral Scleropsis'); 
 $pdf->SetFont('Arial','B',10);
 $pdf->SetXY(114, 90); 
 $pdf->Write(0, date('m/d/Y'));  
 $pdf->SetFont('Arial','B',7);
 $pdf->SetXY(66, 127); 
 $pdf->Write(0, '1.5');  
 $pdf->Output('1.pdf', 'I');
4

1 に答える 1

5

私はFPDF過去に一度使用したことがありますが、XY位置の設定は非常に面倒です。しかし、別の方法はないようです。

私が提案する唯一のことは検討することです

$pdf->SetXY($pdf->GetX() + $x_value, $pdf->GetY() +  $y_value) 

正確な位置がわからない場所。

于 2013-03-14T18:43:56.563 に答える