|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- <?php
- /**
- * This file is part of FPDI
- *
- * @package FPDI
- * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com)
- * @license http://opensource.org/licenses/mit-license The MIT License
- * @version 1.6.1
- */
-
- /**
- * This file is used as a bridge between TCPDF or FPDF
- * It will dynamically create the class extending the available
- * class FPDF or TCPDF.
- *
- * This way it is possible to use FPDI for both FPDF and TCPDF with one FPDI version.
- */
-
- if (!class_exists('TCPDF', false)) {
- /**
- * Class fpdi_bridge
- */
- class fpdi_bridge extends FPDF
- {
- // empty body
- }
-
- } else {
-
- /**
- * Class fpdi_bridge
- */
- class fpdi_bridge extends TCPDF
- {
- /**
- * Array of Tpl-Data
- *
- * @var array
- */
- protected $_tpls = array();
-
- /**
- * Name-prefix of Templates used in Resources-Dictionary
- *
- * @var string A String defining the Prefix used as Template-Object-Names. Have to begin with an /
- */
- public $tplPrefix = "/TPL";
-
- /**
- * Current Object Id.
- *
- * @var integer
- */
- protected $_currentObjId;
-
- /**
- * Return XObjects Dictionary.
- *
- * Overwritten to add additional XObjects to the resources dictionary of TCPDF
- *
- * @return string
- */
- protected function _getxobjectdict()
- {
- $out = parent::_getxobjectdict();
- foreach ($this->_tpls as $tplIdx => $tpl) {
- $out .= sprintf('%s%d %d 0 R', $this->tplPrefix, $tplIdx, $tpl['n']);
- }
-
- return $out;
- }
-
- /**
- * Writes a PDF value to the resulting document.
- *
- * Prepares the value for encryption of imported data by FPDI
- *
- * @param array $value
- */
- protected function _prepareValue(&$value)
- {
- switch ($value[0]) {
- case pdf_parser::TYPE_STRING:
- if ($this->encrypted) {
- $value[1] = $this->_unescape($value[1]);
- $value[1] = $this->_encrypt_data($this->_currentObjId, $value[1]);
- $value[1] = TCPDF_STATIC::_escape($value[1]);
- }
- break;
-
- case pdf_parser::TYPE_STREAM:
- if ($this->encrypted) {
- $value[2][1] = $this->_encrypt_data($this->_currentObjId, $value[2][1]);
- $value[1][1]['/Length'] = array(
- pdf_parser::TYPE_NUMERIC,
- strlen($value[2][1])
- );
- }
- break;
-
- case pdf_parser::TYPE_HEX:
- if ($this->encrypted) {
- $value[1] = $this->hex2str($value[1]);
- $value[1] = $this->_encrypt_data($this->_currentObjId, $value[1]);
-
- // remake hexstring of encrypted string
- $value[1] = $this->str2hex($value[1]);
- }
- break;
- }
- }
-
- /**
- * Un-escapes a PDF string
- *
- * @param string $s
- * @return string
- */
- protected 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 $data
- * @return string
- */
- public function hex2str($data)
- {
- $data = preg_replace('/[^0-9A-Fa-f]/', '', rtrim($data, '>'));
- if ((strlen($data) % 2) == 1) {
- $data .= '0';
- }
-
- return pack('H*', $data);
- }
-
- /**
- * String to hexadecimal
- *
- * @param string $str
- * @return string
- */
- public function str2hex($str)
- {
- return current(unpack('H*', $str));
- }
- }
- }
|