30
1
mirror of https://github.com/vdm-io/tcpdf.git synced 2024-06-05 07:10:48 +00:00

6.0.002 (2013-03-18)

- _getFIXED call on tcpdf_fonts.php was fixed.
This commit is contained in:
nicolaasuni 2013-03-18 23:36:10 +00:00
parent b0b066c14d
commit 1d88afff1d
5 changed files with 11 additions and 8 deletions

View File

@ -1,8 +1,11 @@
6.0.002 (2013-03-18)
- _getFIXED call on tcpdf_fonts.php was fixed.
6.0.001 (2013-03-18) 6.0.001 (2013-03-18)
- Fixed $uni_type call on tcpdf.php. - Fixed $uni_type call on tcpdf.php.
6.0.000 (2013-03-17) 6.0.000 (2013-03-17)
- IMPORTANT: PHP4 support has been removed starting from this version. PHP 5.3 or greater version is required. - IMPORTANT: PHP4 support has been removed starting from this version.
- Several TCPDF methods and vars were moved to new class files: tcpdf_static.php, tcpdf_colors.php, tcpdf_images.php, tcpdf_font_data.php, tcpdf_fonts.php. - Several TCPDF methods and vars were moved to new class files: tcpdf_static.php, tcpdf_colors.php, tcpdf_images.php, tcpdf_font_data.php, tcpdf_fonts.php.
- Files htmlcolors.php, spotcolors.php, unicode_data.php and ecodings_maps.php were removed. - Files htmlcolors.php, spotcolors.php, unicode_data.php and ecodings_maps.php were removed.
- Barcode classes were renamed and new barcode examples were added. - Barcode classes were renamed and new barcode examples were added.

View File

@ -8,7 +8,7 @@ http://sourceforge.net/donate/index.php?group_id=128076
------------------------------------------------------------ ------------------------------------------------------------
Name: TCPDF Name: TCPDF
Version: 6.0.001 Version: 6.0.002
Release date: 2013-03-18 Release date: 2013-03-18
Author: Nicola Asuni Author: Nicola Asuni

View File

@ -3,7 +3,7 @@
// File name : tcpdf_fonts.php // File name : tcpdf_fonts.php
// Version : 1.0.000 // Version : 1.0.000
// Begin : 2008-01-01 // Begin : 2008-01-01
// Last Update : 2013-03-16 // Last Update : 2013-03-18
// 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 : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
// ------------------------------------------------------------------- // -------------------------------------------------------------------
@ -499,7 +499,7 @@ class TCPDF_FONTS {
// ---------- get post data ---------- // ---------- get post data ----------
$offset = $table['post']['offset']; $offset = $table['post']['offset'];
$offset += 4; // skip Format Type $offset += 4; // skip Format Type
$fmetric['italicAngle'] = self::_getFIXED($font, $offset); $fmetric['italicAngle'] = TCPDF_STATIC::_getFIXED($font, $offset);
$offset += 4; $offset += 4;
$fmetric['underlinePosition'] = round(TCPDF_STATIC::_getFWORD($font, $offset) * $urk); $fmetric['underlinePosition'] = round(TCPDF_STATIC::_getFWORD($font, $offset) * $urk);
$offset += 2; $offset += 2;

View File

@ -55,7 +55,7 @@ class TCPDF_STATIC {
* Current TCPDF version. * Current TCPDF version.
* @private static * @private static
*/ */
private static $tcpdf_version = '6.0.001'; private static $tcpdf_version = '6.0.002';
/** /**
* String alias for total number of pages. * String alias for total number of pages.

View File

@ -1,7 +1,7 @@
<?php <?php
//============================================================+ //============================================================+
// File name : tcpdf.php // File name : tcpdf.php
// Version : 6.0.001 // Version : 6.0.002
// Begin : 2002-08-03 // Begin : 2002-08-03
// Last Update : 2013-03-18 // Last Update : 2013-03-18
// 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
@ -139,7 +139,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 6.0.001 * @version 6.0.002
*/ */
if (!defined('K_TCPDF_EXTERNAL_CONFIG')) { if (!defined('K_TCPDF_EXTERNAL_CONFIG')) {
@ -168,7 +168,7 @@ require_once(dirname(__FILE__).'/include/tcpdf_static.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 6.0.001 * @version 6.0.002
* @author Nicola Asuni - info@tecnick.com * @author Nicola Asuni - info@tecnick.com
*/ */
class TCPDF { class TCPDF {