web-dev-qa-db-ja.com

PDF phpのフォームに記入する方法

私は多くのPDFフォームを持っています。私はすでに持っているデータをphpでそれぞれに入力する必要があります。

これは sample PDF form です。phpを使用してこのフォームに入力します。すでにDBにあるデータです。このフォームに入力して保存したいだけです。それ。

私はPHP Zend Frameworkで作業しています。

私が欲しいのは、自分のサイトからこれらのフォームをダウンロードするときに、PDFフォームのすべてのフィールドに、すでに持っている情報を事前に入力することです。

私を助けてください。

20
Sohail

pdftk を呼び出すと、これを実現できます。 外部プログラムを実行する の方法を知っていると想定し、省略します。

まず、PDFから [〜#〜] fdf [〜#〜] ファイルを作成します。

_pdftk form.pdf generate_fdf output data.fdf
_

これをテンプレートとして使用できます。提供したサンプルは次のようになります。

_%FDF-1.2
%<E2><E3><CF><D3>
1 0 obj 
<<
/FDF 
<<
/Fields [
<<
/V ()
/T (Date)
>> 
<<
/V /
/T (CheckBox2)
>> 
<<
/V /
/T (CheckBox3)
>> 
<<
/V /
/T (CheckBox4)
>> 
<<
/V /
/T (CheckBox5)
>> 
<<
/V ()
/T (Your_Last_Name)
>> 
<<
/V ()
/T (Your_First_Name)
>> 
<<
/V /
/T (CheckBox1)
>>]
>>
>>
endobj 
trailer

<<
/Root 1 0 R
>>
%%EOF
_

フィールドは、/V ()で始まる行です。これらのフィールドに必要な値を入力します。例えば:

_%FDF-1.2
%<E2><E3><CF><D3>
1 0 obj 
<<
/FDF 
<<
/Fields [
<<
/V (February 4, 2012)
/T (Date)
...
_

最後に、FDFをPDFとマージします。次のコマンドを実行します。

_pdftk form.pdf fill_form data.fdf output form_with_data.pdf
_

FDFと生成されたPDF=ファイルを保持する必要がない場合は、一時ファイルを使用する代わりに、stdinとstdoutを介してデータをパイプするだけです。

31
Richard Ayotte

私はこれを見つけ、それは私のために働きます。これは、ZendがFDFフォームフィールドに入力する非公式のパッチです。 ディスカッションとパッチのあるサイト

インストールなし、外部プログラムなし、調整なし

使用する:

$pdf = Zend_Pdf::load('input-file-containing-form.pdf');
$pdf->setTextField('name', 'Someone');
$pdf->setTextField('address', '1 Main Street');
$pdf->setTextField('city', 'Cyberspace');
$pdf->save('outputfile.pdf');

ページがもう存在しない場合、ここにPDF.phpのパッチがあります(誰かが問題を抱えている場合-プライベートメッセージを書いてください):

--- Pdf.php.orig    2009-11-15 17:52:57.000000000 +0100
+++ Pdf.php 2010-01-07 04:05:23.000000000 +0100
@@ -202,6 +202,13 @@
      * @var array
      */
     protected static $_inheritableAttributes = array('Resources', 'MediaBox', 'CropBox', 'Rotate');
+    
+    /**
+     * List of form fields
+     *
+     * @var array - Associative array, key: name of form field, value: Zend_Pdf_Element
+     */
+    protected $_formFields = array();

     /**
      * Request used memory manager
@@ -315,6 +322,7 @@

             $this->_loadNamedDestinations($this->_trailer->Root, $this->_parser->getPDFVersion());
             $this->_loadOutlines($this->_trailer->Root);
+            $this->_loadFormfields($this->_trailer->Root);

             if ($this->_trailer->Info !== null) {
                 $this->properties = $this->_trailer->Info->toPhp();
@@ -557,6 +565,61 @@
             $this->_originalOpenOutlinesCount = $root->Outlines->Count->value;
         }
     }
+    
+    /**
+     * Load form fields
+     * Populates the _formFields array, for later lookup of fields by name
+     *
+     * @param Zend_Pdf_Element_Reference $root Document catalog entry
+     */
+    protected function _loadFormFields(Zend_Pdf_Element_Reference $root)
+    {
+      if ($root->AcroForm === null || $root->AcroForm->Fields === null) {
+        return;
+      }
+      
+      foreach ($root->AcroForm->Fields->items as $field)
+      {
+          if ( $field->FT->value == 'Tx' && $field->T !== null ) /* We only support fields that are textfields and have a name */
+          {
+              $this->_formFields[$field->T->value] = $field;
+          }
+      }
+      
+      if ( !$root->AcroForm->NeedAppearances || !$root->AcroForm->NeedAppearances->value )
+      {
+        /* Ask the .pdf viewer to generate its own appearance data, so we do not have to */
+        $root->AcroForm->add(new Zend_Pdf_Element_Name('NeedAppearances'), new Zend_Pdf_Element_Boolean(true) );
+        $root->AcroForm->touch();
+      }
+    }
+    
+    /**
+     * Retrieves a list with the names of the AcroForm textfields in the PDF
+     *
+     * @return array of strings
+     */
+    public function getTextFieldNames()
+    {
+      return array_keys($this->_formFields);
+    }
+    
+    /**
+     * Sets the value of an AcroForm text field
+     *
+     * @param string $name Name of textfield
+     * @param string $value Value
+     * @throws Zend_Pdf_Exception if the textfield does not exist in the pdf
+     */
+    public function setTextField($name, $value)
+    {
+      if ( !isset($this->_formFields[$name]))
+        throw new Zend_Pdf_Exception("Field '$name' does not exist or is not a textfield");
+      
+      $field = $this->_formFields[$name];
+      $field->add(new Zend_Pdf_Element_Name('V'), new Zend_Pdf_Element_String($value) );
+      $field->touch();      
+    }

     /**
      * Orginize pages to tha pages tree structure.
16
Peter Denev

インターネットで同じものを探しているfpdfライブラリを見つけました。

http://www.fpdf.org/en/script/script93.php

コードは見た目がきれいで、使いやすく、覚えやすく、フォーム付きのPDFでも機能します(入力可能)。

<?php

/***************************
  Sample using a PHP array
****************************/

require('fpdm.php');

$fields = array(
    'name'    => 'My name',
    'address' => 'My address',
    'city'    => 'My city',
    'phone'   => 'My phone number'
);

$pdf = new FPDM('template.pdf');
$pdf->Load($fields, false); // second parameter: false if field values are in ISO-8859-1, true if UTF-8
$pdf->Merge();
$pdf->Output();
?>

そのまま使用できる例が付属しています。それが役に立てば幸い。

2
erm3nda

Zend_Pdf -componentはPDFにテキストを描画できますが、PDFページでX座標とY座標を指定する必要があるため、少し扱いに​​くいです。そんな感じ:

// This is the pdf-file you want to fill out...
$pdf = Zend_Pdf::load('/path/to/pdf-template.pdf')
$page = $pdf->pages[0]; // Use first page
$page->drawText("firstname lastname", 200, 600);
...
$pdf->pages[0] = $page;
// be sure to write to a new file, not the original empty  form.
$pdf->save('/path/to/pdf-output.pdf');

正確な座標を見つける簡単な方法があるかどうかはわかりませんが、通常は適切な座標になるまで遊んでいます。

2
dbrumann

Drupalをインストールして簡単なサイトを設定することを気にしない場合は、 Fill PDF モジュールをインストールして構成できます。すでにデータがある場合は、これはやり過ぎかもしれませんが、そのデータをDrupalに(たとえば Feeds モジュールを使用してなど)にインポートできる場合)、PDFを書く時間を節約できます。 -filling code。そのモジュールでホストされたサービスを使用したり、サーバーにインストールしたりできます。

免責事項:私はそのモジュールを保守し、ホストされているサービスを実行します。

0
wizonesolutions