30
1
mirror of https://github.com/vdm-io/tcpdf.git synced 2024-06-05 07:10:48 +00:00
This commit is contained in:
nicolaasuni 2012-04-22 11:28:38 +01:00
parent 9a76df62cd
commit 338643d839
3 changed files with 23 additions and 10 deletions

View File

@ -1,3 +1,6 @@
5.9.158 (2012-04-22)
- Some SVG-related bugs were fixed.
5.9.157 (2012-04-16) 5.9.157 (2012-04-16)
- Some SVG-related bugs were fixed. - Some SVG-related bugs were fixed.

View File

@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076
------------------------------------------------------------ ------------------------------------------------------------
Name: TCPDF Name: TCPDF
Version: 5.9.157 Version: 5.9.158
Release date: 2012-04-16 Release date: 2012-04-22
Author: Nicola Asuni Author: Nicola Asuni
Copyright (c) 2002-2012: Copyright (c) 2002-2012:

View File

@ -1,9 +1,9 @@
<?php <?php
//============================================================+ //============================================================+
// File name : tcpdf.php // File name : tcpdf.php
// Version : 5.9.157 // Version : 5.9.158
// Begin : 2002-08-03 // Begin : 2002-08-03
// Last Update : 2012-04-16 // Last Update : 2012-04-22
// Author : Nicola Asuni - Tecnick.com LTD - Manor Coach House, Church Hill, Aldershot, Hants, GU12 4RQ, UK - www.tecnick.com - info@tecnick.com // Author : Nicola Asuni - Tecnick.com LTD - Manor Coach House, Church Hill, Aldershot, Hants, GU12 4RQ, UK - www.tecnick.com - info@tecnick.com
// License : http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT GNU-LGPLv3 // License : http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT GNU-LGPLv3
// ------------------------------------------------------------------- // -------------------------------------------------------------------
@ -137,7 +137,7 @@
* Tools to encode your unicode fonts are on fonts/utils directory.</p> * Tools to encode your unicode fonts are on fonts/utils directory.</p>
* @package com.tecnick.tcpdf * @package com.tecnick.tcpdf
* @author Nicola Asuni * @author Nicola Asuni
* @version 5.9.157 * @version 5.9.158
*/ */
// Main configuration file. Define the K_TCPDF_EXTERNAL_CONFIG constant to skip this file. // Main configuration file. Define the K_TCPDF_EXTERNAL_CONFIG constant to skip this file.
@ -149,7 +149,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.<br> * 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.<br>
* @package com.tecnick.tcpdf * @package com.tecnick.tcpdf
* @brief PHP class for generating PDF documents without requiring external extensions. * @brief PHP class for generating PDF documents without requiring external extensions.
* @version 5.9.157 * @version 5.9.158
* @author Nicola Asuni - info@tecnick.com * @author Nicola Asuni - info@tecnick.com
*/ */
class TCPDF { class TCPDF {
@ -160,7 +160,7 @@ class TCPDF {
* Current TCPDF version. * Current TCPDF version.
* @private * @private
*/ */
private $tcpdf_version = '5.9.157'; private $tcpdf_version = '5.9.158';
// Protected properties // Protected properties
@ -15012,7 +15012,7 @@ class TCPDF {
* @since 2.1.000 (2008-01-08) * @since 2.1.000 (2008-01-08)
*/ */
protected function _outPoint($x, $y) { protected function _outPoint($x, $y) {
$this->_out(sprintf('%F %F m', $x * $this->k, ($this->h - $y) * $this->k)); $this->_out(sprintf('%F %F m', ($x * $this->k), (($this->h - $y) * $this->k)));
} }
/** /**
@ -15024,7 +15024,7 @@ class TCPDF {
* @since 2.1.000 (2008-01-08) * @since 2.1.000 (2008-01-08)
*/ */
protected function _outLine($x, $y) { protected function _outLine($x, $y) {
$this->_out(sprintf('%F %F l', $x * $this->k, ($this->h - $y) * $this->k)); $this->_out(sprintf('%F %F l', ($x * $this->k), (($this->h - $y) * $this->k)));
} }
/** /**
@ -28331,6 +28331,8 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
} else { } else {
$this->_outLine($x, $y); $this->_outLine($x, $y);
} }
$x0 = $x;
$y0 = $y;
} }
$xmin = min($xmin, $x); $xmin = min($xmin, $x);
$ymin = min($ymin, $y); $ymin = min($ymin, $y);
@ -28352,6 +28354,8 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
$y = $cp + $yoffset; $y = $cp + $yoffset;
if ((abs($x0 - $x) >= $minlen) OR (abs($y0 - $y) >= $minlen)) { if ((abs($x0 - $x) >= $minlen) OR (abs($y0 - $y) >= $minlen)) {
$this->_outLine($x, $y); $this->_outLine($x, $y);
$x0 = $x;
$y0 = $y;
} }
$xmin = min($xmin, $x); $xmin = min($xmin, $x);
$ymin = min($ymin, $y); $ymin = min($ymin, $y);
@ -28370,6 +28374,8 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
$x = $cp + $xoffset; $x = $cp + $xoffset;
if ((abs($x0 - $x) >= $minlen) OR (abs($y0 - $y) >= $minlen)) { if ((abs($x0 - $x) >= $minlen) OR (abs($y0 - $y) >= $minlen)) {
$this->_outLine($x, $y); $this->_outLine($x, $y);
$x0 = $x;
$y0 = $y;
} }
$xmin = min($xmin, $x); $xmin = min($xmin, $x);
$xmax = max($xmax, $x); $xmax = max($xmax, $x);
@ -28384,6 +28390,8 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
$y = $cp + $yoffset; $y = $cp + $yoffset;
if ((abs($x0 - $x) >= $minlen) OR (abs($y0 - $y) >= $minlen)) { if ((abs($x0 - $x) >= $minlen) OR (abs($y0 - $y) >= $minlen)) {
$this->_outLine($x, $y); $this->_outLine($x, $y);
$x0 = $x;
$y0 = $y;
} }
$ymin = min($ymin, $y); $ymin = min($ymin, $y);
$ymax = max($ymax, $y); $ymax = max($ymax, $y);
@ -28693,7 +28701,8 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
if (!empty($ctm)) { if (!empty($ctm)) {
$tm = $ctm; $tm = $ctm;
} else { } else {
$tm = $this->svgstyles[(count($this->svgstyles) - 1)]['transfmatrix']; //$tm = $this->svgstyles[(count($this->svgstyles) - 1)]['transfmatrix'];
$tm = array(1,0,0,1,0,0);
} }
if (isset($attribs['transform']) AND !empty($attribs['transform'])) { if (isset($attribs['transform']) AND !empty($attribs['transform'])) {
$tm = $this->getTransformationMatrixProduct($tm, $this->getSVGTransformMatrix($attribs['transform'])); $tm = $this->getTransformationMatrixProduct($tm, $this->getSVGTransformMatrix($attribs['transform']));
@ -28732,6 +28741,7 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
// group together related graphics elements // group together related graphics elements
array_push($this->svgstyles, $svgstyle); array_push($this->svgstyles, $svgstyle);
$this->StartTransform(); $this->StartTransform();
$this->SVGTransform($tm);
$this->setSVGStyles($svgstyle, $prev_svgstyle); $this->setSVGStyles($svgstyle, $prev_svgstyle);
break; break;
} }