diff --git a/CHANGELOG.TXT b/CHANGELOG.TXT index f3f45dc..1a8d869 100755 --- a/CHANGELOG.TXT +++ b/CHANGELOG.TXT @@ -1,3 +1,6 @@ +5.9.1998 (2012-11-29) + - Internal setImageBuffer() method was improved. + 5.9.198 (2012-11-19) - Datamatrix EDIFACT mode was fixed. diff --git a/README.TXT b/README.TXT index 1c9fe61..61ff935 100755 --- a/README.TXT +++ b/README.TXT @@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076 ------------------------------------------------------------ Name: TCPDF -Version: 5.9.198 -Release date: 2012-11-19 +Version: 5.9.199 +Release date: 2012-11-29 Author: Nicola Asuni Copyright (c) 2002-2012: diff --git a/composer.json b/composer.json index 314359f..bf914b0 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "tecnick.com/tcpdf", - "version": "5.9.198", + "version": "5.9.199", "homepage": "http://www.tcpdf.org/", "type": "library", "description": "TCPDF is a PHP class for generating PDF documents.", diff --git a/tcpdf.php b/tcpdf.php index 00be28f..0075ec2 100755 --- a/tcpdf.php +++ b/tcpdf.php @@ -1,9 +1,9 @@ * @package com.tecnick.tcpdf * @author Nicola Asuni - * @version 5.9.198 + * @version 5.9.199 */ // Main configuration file. Define the K_TCPDF_EXTERNAL_CONFIG constant to skip this file. @@ -151,7 +151,7 @@ require_once(dirname(__FILE__).'/config/tcpdf_config.php'); * TCPDF project (http://www.tcpdf.org) has been originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.
* @package com.tecnick.tcpdf * @brief PHP class for generating PDF documents without requiring external extensions. - * @version 5.9.198 + * @version 5.9.199 * @author Nicola Asuni - info@tecnick.com */ class TCPDF { @@ -162,7 +162,7 @@ class TCPDF { * Current TCPDF version. * @private */ - private $tcpdf_version = '5.9.198'; + private $tcpdf_version = '5.9.199'; // Protected properties @@ -8202,10 +8202,6 @@ class TCPDF { // force grayscale $info['cs'] = 'DeviceGray'; } - $info['i'] = $this->numimages; - if (!in_array($file, $this->imagekeys)) { - ++$info['i']; - } if ($imgmask !== false) { $info['masked'] = $imgmask; } @@ -8215,7 +8211,7 @@ class TCPDF { // array of alternative images $info['altimgs'] = $altimgs; // add image to document - $this->setImageBuffer($file, $info); + $info['i'] = $this->setImageBuffer($file, $info); } // set alignment $this->img_rb_y = $y + $h; @@ -25981,10 +25977,16 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: * Set image buffer content. * @param $image (string) image key * @param $data (array) image data + * @return int image index number * @protected * @since 4.5.000 (2008-12-31) */ protected function setImageBuffer($image, $data) { + if (($data['i'] = array_search($image, $this->imagekeys)) === FALSE) { + $this->imagekeys[$this->numimages] = $image; + $data['i'] = $this->numimages; + ++$this->numimages; + } if ($this->diskcache) { if (!isset($this->images[$image])) { $this->images[$image] = $this->getObjFilename('image'.$image); @@ -25993,10 +25995,7 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: } else { $this->images[$image] = $data; } - if (!in_array($image, $this->imagekeys)) { - $this->imagekeys[] = $image; - ++$this->numimages; - } + return $data['i']; } /**