mirror of
https://github.com/vdm-io/tcpdf.git
synced 2024-11-28 23:26:26 +00:00
5.9.132
This commit is contained in:
parent
cb81ae3824
commit
7a48cc3bba
@ -1,3 +1,6 @@
|
|||||||
|
5.9.132 (2011-10-20)
|
||||||
|
- Bug item #3426167 "bug in function convertHTMLColorToDec()" was fixed.
|
||||||
|
|
||||||
5.9.131 (2011-10-13)
|
5.9.131 (2011-10-13)
|
||||||
- An error message was added to ImagePngAlpha() method.
|
- An error message was added to ImagePngAlpha() method.
|
||||||
|
|
||||||
|
@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076
|
|||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
|
|
||||||
Name: TCPDF
|
Name: TCPDF
|
||||||
Version: 5.9.131
|
Version: 5.9.132
|
||||||
Release date: 2011-10-13
|
Release date: 2011-10-20
|
||||||
Author: Nicola Asuni
|
Author: Nicola Asuni
|
||||||
|
|
||||||
Copyright (c) 2002-2011:
|
Copyright (c) 2002-2011:
|
||||||
|
13
tcpdf.php
13
tcpdf.php
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
//============================================================+
|
//============================================================+
|
||||||
// File name : tcpdf.php
|
// File name : tcpdf.php
|
||||||
// Version : 5.9.131
|
// Version : 5.9.132
|
||||||
// Begin : 2002-08-03
|
// Begin : 2002-08-03
|
||||||
// Last Update : 2011-10-13
|
// Last Update : 2011-10-20
|
||||||
// Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
// Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||||
// License : http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT GNU-LGPLv3 + YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE GENERATED PDF DOCUMENTS.
|
// License : http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT GNU-LGPLv3 + YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE GENERATED PDF DOCUMENTS.
|
||||||
// -------------------------------------------------------------------
|
// -------------------------------------------------------------------
|
||||||
@ -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.131
|
* @version 5.9.132
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// 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.131
|
* @version 5.9.132
|
||||||
* @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.131';
|
private $tcpdf_version = '5.9.132';
|
||||||
|
|
||||||
// Protected properties
|
// Protected properties
|
||||||
|
|
||||||
@ -13476,10 +13476,11 @@ class TCPDF {
|
|||||||
$color_code = $this->webcolor[$color];
|
$color_code = $this->webcolor[$color];
|
||||||
} else {
|
} else {
|
||||||
// spot color
|
// spot color
|
||||||
$returncolor = $this->getSpotColor($name);
|
$returncolor = $this->getSpotColor($color);
|
||||||
if ($returncolor === false) {
|
if ($returncolor === false) {
|
||||||
$returncolor = $defcol;
|
$returncolor = $defcol;
|
||||||
}
|
}
|
||||||
|
return $returncolor;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$color_code = substr($color, 1);
|
$color_code = substr($color, 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user