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)
- Fixed $uni_type call on tcpdf.php.
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.
- Files htmlcolors.php, spotcolors.php, unicode_data.php and ecodings_maps.php were removed.
- 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
Version: 6.0.001
Version: 6.0.002
Release date: 2013-03-18
Author: Nicola Asuni

View File

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

View File

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

View File

@ -1,7 +1,7 @@
<?php
//============================================================+
// File name : tcpdf.php
// Version : 6.0.001
// Version : 6.0.002
// Begin : 2002-08-03
// 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
@ -139,7 +139,7 @@
* Tools to encode your unicode fonts are on fonts/utils directory.</p>
* @package com.tecnick.tcpdf
* @author Nicola Asuni
* @version 6.0.001
* @version 6.0.002
*/
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>
* @package com.tecnick.tcpdf
* @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
*/
class TCPDF {