php - Zend_Pdf 操作 PDF 表单域

标签 php zend-framework zend-pdf pdf-form

我目前有一个项目,其中有许多表单被处理并存储在数据库中。成功完成后,将通过电子邮件通知管理员该表单提交的内容。

问题是这些表格之一我需要它看起来完全像我的 PDF 格式的邮购版本。

所以我有两个基本选择:

  1. 找出我需要写入的“字段”的所有坐标,然后在这些坐标处覆盖​​我绘制的文本
  2. 使用 Acrobat Pro 的表单向导将 pdf 转换为 pdf 表单,然后以编程方式设置字段值

我知道选项 1 是可行的。我以前做过类似的事情。问题是表格非常复杂,有很多坐标需要计算...此外,这个过程有很多试验和错误。

选项 2 似乎会更容易,只要我可以通过迭代或名称/id 访问字段并设置值即可。

所以我的问题是,Zend_Pdf 是否支持对 PDF 表单域的操作?除了提交和重置表单操作外,我在 API 中看不到任何表示它支持此操作的内容。

此外,如果有其他支持选项 2 的 OO F/OSS PDF 库,我将有兴趣了解它们以及任何替代方法。

最佳答案

prodigitalson,我想为您发布这个解决方案,以防您仍然对寻找答案感到好奇。它只适用于为 1.5 版 (Acrobat 6.0) 优化的 PDF,但它确实工作得很好。它是 Zend Framework 1.12.3 的非官方补丁,用于填充 PDF 表单字段。 Site with the discussion and patch

没有安装,没有外部程序,没有坐标

首先使用如下内容更新您的 php.ini 文件(注意:当我上传这些更改时,我将不得不更改我实际网络服务器上的 .ini 文件):

include_path = ".;C:\wamp\www\includes"

请注意:我将所有库内容从“ZendFramework-1.12.3\library”文件夹移到名为 Zend 的文件夹中:C:\wamp\www\includes\Zend为了便于引用库(无论如何,这就是您所需要的)。

然后在您的 php 文件中(我使用了“DIRECTORY_SEPARATOR”,这样您就可以在 Win 或 Unix 服务器上使用它,而且我不必根据我的 .php 文件所在的位置进行任何代码更改,我将只需更改服务器配置):

require_once('Zend'.DIRECTORY_SEPARATOR.'Loader'.DIRECTORY_SEPARATOR.'Autoloader.php');
$loader = Zend_Loader_Autoloader::getInstance();
$loader->registerNamespace('Zend_');

然后在实际代码中使用:

$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 文件的代码,这样它就不会阻塞我的服务器:attach_mailer_class.php available here版权所有 (c) 2006,Olaf Lederer:

// Write $_POST form data to associative array
foreach ($_POST as $key => $value) { 
    $NameArray[$key] = $value;
}

// Path to PDF application fillable file
$pdf_path = dirname(__FILE__) . "\\docs";
$pdf_filename = 'employment_applicationJBzend.pdf';
$pdf_file_path = $pdf_path . "\\" . $pdf_filename;

// Path to PDF application file save location
$result_path = dirname(__FILE__) . "\\results";
$result_filename = ucfirst($_POST['first_name']) . ucfirst($_POST['last_name']) . $filedatetime . '.pdf';
$result_file_path = $result_path . "\\" . $result_filename;

//Filling PDF fields | Example: $pdf->setTextField('position_applied_for', 'IT Manager');
$pdf = Zend_Pdf::load($pdf_file_path);

foreach ($NameArray as $key1 => $value) {
    foreach($ExceptionArray as $key2 => $value)
    {
        if($key1 == $ExceptionArray[$key2]){
            $boolSetText = false;
            break;
        }else{
            $boolSetText = true;
        }
    }
    if($boolSetText){
        $pdf->setTextField($key1, $NameArray[$key1]); 
    }
}
$pdf->save($result_file_path);

//Create and send message using 'attach_mailer_class.php
$email = new attach_mailer($from_name, $from_mail, $mail_to, $cc = "", $bcc = "", $subject);
$email->text_body = $message;
$email->add_attach_file($result_file_path);
// $email->add_attach_file("ip2nation.zip"); 
$email->process_mail();
unlink($result_file_path);

如果页面不再存在,这里是 PDF.php 的补丁(如果您不知道如何运行实际的补丁,基本上您可以浏览 PDF.php 文件并替换下面的所有行'+' 在它们前面。您可以通过位置标记 '@@ -202,6 +202,13 @@' 找到它们的位置,它就在第 200 行附近,然后只需复制并粘贴以替换旧代码新的):

--- 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.

关于php - Zend_Pdf 操作 PDF 表单域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3814094/

相关文章:

php - Laravel Eloquent 查询优化

php - 安全地发布并打印 JavaScript 标签

zend-framework - 用于 POST 和 PUT 方法的基于 Zend 的 REST URI

php - 如何确定 .pdf 文件的内容是否被扫描

php - 在 zend_pdf 中生成全尺寸和高质量的图像

PHP 错误无法从 Android 应用程序中检索 LIKE 语句

php - Zend_Framework - 在区域设置 'zh' 中找不到区域

linux - github项目与本地服务器同步问题

pdf - 性能变化 zend_pdf 2 与 tcpdf 。

php - 如何在 GitHub Action 中使用不同版本的 PHP 进行测试