2013-08-05 107 views
4

我想在symfony2中使用TCPDF的FPDI。嘗試使用FPD和TCPDF使用Symfony2

我可以單獨使用TCPDF,沒有任何問題。但是當我嘗試使用FPDI時,我收到錯誤。

在我composer.json我把以下內容:

"autoload": { 
     "psr-0": { "": "src/" 
     }, 
     "classmap": ["vendor/tcpdf/tcpdf.php","vendor/fpdi/fpdi.php"]  
    }, 

然後控制器可以實例化一個TCPDF類

$tcpdf = new \TCPDF(); 

但是當我嘗試實例化一個FPDI實例

$fpdi = new \FPDI(); 

當我嘗試訪問路由時,Symfony會引發以下錯誤。

* FatalErrorException:錯誤:類 '的Symfony \元器件\調試\異常\ ContextErrorException' 用C未找到:\ XAMPP \ htdocs中\ CONSULTA \廠商\ FPDI \ fpdi2tcpdf_bridge.php線169 在C:\ XAMPP \ htdocs中\ Consulta \ vendor \ fpdi \ fpdi2tcpdf_bridge.php line 169 *

有誰知道如何解決這個問題?

我加入fpdi2tcpdf_bridge.php

<?php 
// 
// FPDI - Version 1.4.4 
// 
// Copyright 2004-2013 Setasign - Jan Slabon 
// 
// Licensed under the Apache License, Version 2.0 (the "License"); 
// you may not use this file except in compliance with the License. 
// You may obtain a copy of the License at 
// 
//  http://www.apache.org/licenses/LICENSE-2.0 
// 
// Unless required by applicable law or agreed to in writing, software 
// distributed under the License is distributed on an "AS IS" BASIS, 
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
// See the License for the specific language governing permissions and 
// limitations under the License. 
// 



/** 
* This class is used as a bridge between TCPDF and FPDI 
* and will create the possibility to use both FPDF and TCPDF 
* via one FPDI version. 
* 
* We'll simply remap TCPDF to FPDF again. 
* 
* It'll be loaded and extended by FPDF_TPL. 
*/ 
class FPDF extends TCPDF { 

    function _putstream($s) { 
     $this->_out($this->_getstream($s)); 
    } 

    function _getxobjectdict() { 
     $out = parent::_getxobjectdict(); 
     if (count($this->tpls)) { 
      foreach($this->tpls as $tplidx => $tpl) { 
       $out .= sprintf('%s%d %d 0 R', $this->tplprefix, $tplidx, $tpl['n']); 
      } 
     } 

     return $out; 
    } 

    /** 
    * Encryption of imported data by FPDI 
    * 
    * @param array $value 
    */ 
    function pdf_write_value(&$value) { 
     switch ($value[0]) { 
      case PDF_TYPE_STRING: 
       if ($this->encrypted) { 
        $value[1] = $this->_unescape($value[1]); 
        $value[1] = $this->_encrypt_data($this->_current_obj_id, $value[1]); 
        $value[1] = TCPDF_STATIC::_escape($value[1]); 
       } 
       break; 

      case PDF_TYPE_STREAM: 
       if ($this->encrypted) { 
        $value[2][1] = $this->_encrypt_data($this->_current_obj_id, $value[2][1]); 
        $value[1][1]['/Length'] = array(
         PDF_TYPE_NUMERIC, 
         strlen($value[2][1]) 
        ); 
       } 
       break; 

      case PDF_TYPE_HEX: 
       if ($this->encrypted) { 
        $value[1] = $this->hex2str($value[1]); 
        $value[1] = $this->_encrypt_data($this->_current_obj_id, $value[1]); 

        // remake hexstring of encrypted string 
        $value[1] = $this->str2hex($value[1]); 
       } 
       break; 
     } 
    } 

    /** 
    * Unescapes a PDF string 
    * 
    * @param string $s 
    * @return string 
    */ 
    function _unescape($s) { 
     $out = ''; 
     for ($count = 0, $n = strlen($s); $count < $n; $count++) { 
      if ($s[$count] != '\\' || $count == $n-1) { 
       $out .= $s[$count]; 
      } else { 
       switch ($s[++$count]) { 
        case ')': 
        case '(': 
        case '\\': 
         $out .= $s[$count]; 
         break; 
        case 'f': 
         $out .= chr(0x0C); 
         break; 
        case 'b': 
         $out .= chr(0x08); 
         break; 
        case 't': 
         $out .= chr(0x09); 
         break; 
        case 'r': 
         $out .= chr(0x0D); 
         break; 
        case 'n': 
         $out .= chr(0x0A); 
         break; 
        case "\r": 
         if ($count != $n-1 && $s[$count+1] == "\n") 
          $count++; 
         break; 
        case "\n": 
         break; 
        default: 
         // Octal-Values 
         if (ord($s[$count]) >= ord('0') && 
          ord($s[$count]) <= ord('9')) { 
          $oct = ''. $s[$count]; 

          if (ord($s[$count+1]) >= ord('0') && 
           ord($s[$count+1]) <= ord('9')) { 
           $oct .= $s[++$count]; 

           if (ord($s[$count+1]) >= ord('0') && 
            ord($s[$count+1]) <= ord('9')) { 
            $oct .= $s[++$count];  
           }        
          } 

          $out .= chr(octdec($oct)); 
         } else { 
          $out .= $s[$count]; 
         } 
       } 
      } 
     } 
     return $out; 
    } 

    /** 
    * Hexadecimal to string 
    * 
    * @param string $hex 
    * @return string 
    */ 
    function hex2str($hex) { 
     return pack('H*', str_replace(array("\r", "\n", ' '), '', $hex)); 
    } 

    /** 
    * String to hexadecimal 
    * 
    * @param string $str 
    * @return string 
    */ 
    function str2hex($str) { 
     return current(unpack('H*', $str)); 
    } 
} 
+0

背後還有一個錯誤,忽略「ContextErrorException」似乎不存在的事實。找到導致它嘗試拋出異常的問題。你有沒有堆棧跟蹤? – Flosculus

+0

嗨, Symfony2顯示我沒有堆棧跟蹤關於此。 我寫過Symfony2中顯示的所有錯誤信息。 在我的控制器代碼中,我所做的唯一的事情是: 'function probandoFPDIAction(){ $ pdf = new \ FPDI; }' –

+0

您可以粘貼bin'fpdi2tcpdf_bridge.php'請 – Flosculus

回答

4

的內容添加packagist參考composer.json正常方式:

https://packagist.org/packages/setasign/fpdi

"setasign/fpdi": "1.4.2"

這似乎是別名https://github.com/mark9000/FPDI.git

這應該自動加載它正確。

+0

如果你使用的是命令行的話:'php composer.phar需要setasign/fpdi 1.4.2',但刪除那個classmap屬性 – Flosculus

+0

嗨, 它的工作! 我從composer.json的類映射中刪除了TCPDF和FPDI。 然後,添加以下兩者: 「tecnick.com/tcpdf」: 「DEV-主」, 「setasign/FPDI」: 「1.4.2」, 向該composer.json的 「requiere」 的一部分,它作品:) 謝謝! –