mirror of
https://github.com/vdm-io/tcpdf.git
synced 2025-01-10 15:40:57 +00:00
5.9.184 (2012-09-11)
- A problem with EAN barcodes was fixed.
This commit is contained in:
parent
d4b1c84b49
commit
f66d0fa6ac
@ -1,3 +1,6 @@
|
|||||||
|
5.9.184 (2012-09-11)
|
||||||
|
- A problem with EAN barcodes was fixed.
|
||||||
|
|
||||||
5.9.183 (2012-09-07)
|
5.9.183 (2012-09-07)
|
||||||
- A problem with font names normalization was fixed.
|
- A problem with font names normalization was fixed.
|
||||||
|
|
||||||
|
@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076
|
|||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
|
|
||||||
Name: TCPDF
|
Name: TCPDF
|
||||||
Version: 5.9.183
|
Version: 5.9.184
|
||||||
Release date: 2012-09-07
|
Release date: 2012-09-11
|
||||||
Author: Nicola Asuni
|
Author: Nicola Asuni
|
||||||
|
|
||||||
Copyright (c) 2002-2012:
|
Copyright (c) 2002-2012:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "tcpdf/tcpdf",
|
"name": "tcpdf/tcpdf",
|
||||||
"version": "5.9.183",
|
"version": "5.9.184",
|
||||||
"homepage": "http://www.tcpdf.org/",
|
"homepage": "http://www.tcpdf.org/",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"description": "TCPDF is a PHP class for generating PDF files on-the-fly without requiring external extensions.",
|
"description": "TCPDF is a PHP class for generating PDF files on-the-fly without requiring external extensions.",
|
||||||
|
@ -219,7 +219,7 @@ if (!defined('K_TCPDF_EXTERNAL_CONFIG')) {
|
|||||||
define('HEAD_MAGNIFICATION', 1.1);
|
define('HEAD_MAGNIFICATION', 1.1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* height of cell repect font height
|
* height of cell respect font height
|
||||||
*/
|
*/
|
||||||
define('K_CELL_HEIGHT_RATIO', 1.25);
|
define('K_CELL_HEIGHT_RATIO', 1.25);
|
||||||
|
|
||||||
|
@ -214,7 +214,7 @@ define ('PDF_IMAGE_SCALE_RATIO', 1.25);
|
|||||||
define('HEAD_MAGNIFICATION', 1.1);
|
define('HEAD_MAGNIFICATION', 1.1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* height of cell repect font height
|
* height of cell respect font height
|
||||||
*/
|
*/
|
||||||
define('K_CELL_HEIGHT_RATIO', 1.25);
|
define('K_CELL_HEIGHT_RATIO', 1.25);
|
||||||
|
|
||||||
|
10
tcpdf.php
10
tcpdf.php
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
//============================================================+
|
//============================================================+
|
||||||
// File name : tcpdf.php
|
// File name : tcpdf.php
|
||||||
// Version : 5.9.183
|
// Version : 5.9.184
|
||||||
// Begin : 2002-08-03
|
// Begin : 2002-08-03
|
||||||
// Last Update : 2012-09-07
|
// Last Update : 2012-09-11
|
||||||
// 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
|
||||||
// -------------------------------------------------------------------
|
// -------------------------------------------------------------------
|
||||||
@ -138,7 +138,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.183
|
* @version 5.9.184
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// 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.
|
||||||
@ -150,7 +150,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.183
|
* @version 5.9.184
|
||||||
* @author Nicola Asuni - info@tecnick.com
|
* @author Nicola Asuni - info@tecnick.com
|
||||||
*/
|
*/
|
||||||
class TCPDF {
|
class TCPDF {
|
||||||
@ -161,7 +161,7 @@ class TCPDF {
|
|||||||
* Current TCPDF version.
|
* Current TCPDF version.
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
private $tcpdf_version = '5.9.183';
|
private $tcpdf_version = '5.9.184';
|
||||||
|
|
||||||
// Protected properties
|
// Protected properties
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user