30
1
mirror of https://github.com/vdm-io/tcpdf.git synced 2024-06-06 15:50:47 +00:00
This commit is contained in:
nicolaasuni 2010-12-18 09:30:56 +01:00
parent a8b97f62be
commit 94ccae0298
4 changed files with 15 additions and 12 deletions

View File

@ -1,3 +1,6 @@
5.9.032 (2010-12-18)
- Default font stretching and spacing values are now inherited by HTML methods.
5.9.031 (2010-12-16)
- Source code documentation errors were fixed.

View File

@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076
------------------------------------------------------------
Name: TCPDF
Version: 5.9.031
Release date: 2010-12-16
Version: 5.9.032
Release date: 2010-12-18
Author: Nicola Asuni
Copyright (c) 2002-2010:

View File

@ -3,9 +3,9 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title>TCPDF DOCUMENTATION</title>
<meta http-equiv="refresh" content="1;url=http://www.tcpdf.org" />
<meta http-equiv="refresh" content="1;url=http://www.tcpdf.org/doc/" />
</head>
<body>
<a href="http://www.tcpdf.org">TCPDF Documentation</a>
<a href="http://www.tcpdf.org/doc/">TCPDF Documentation</a>
</body>
</html>

View File

@ -1,9 +1,9 @@
<?php
//============================================================+
// File name : tcpdf.php
// Version : 5.9.031
// Version : 5.9.032
// Begin : 2002-08-03
// Last Update : 2010-12-16
// Last Update : 2010-12-18
// 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.
// -------------------------------------------------------------------
@ -133,7 +133,7 @@
* Tools to encode your unicode fonts are on fonts/utils directory.</p>
* @package com.tecnick.tcpdf
* @author Nicola Asuni
* @version 5.9.031
* @version 5.9.032
*/
/**
@ -148,7 +148,7 @@ require_once(dirname(__FILE__).'/config/tcpdf_config.php');
* @name TCPDF
* @package com.tecnick.tcpdf
* @brief PHP class for generating PDF documents without requiring external extensions.
* @version 5.9.031
* @version 5.9.032
* @author Nicola Asuni - info@tecnick.com
*/
class TCPDF {
@ -159,7 +159,7 @@ class TCPDF {
* Current TCPDF version.
* @private
*/
private $tcpdf_version = '5.9.031';
private $tcpdf_version = '5.9.032';
// Protected properties
@ -6490,7 +6490,7 @@ class TCPDF {
* }
* // restore previous object
* $pdf = $pdf->rollbackTransaction();
*
*
* @param $w (float) Width of cells. If 0, they extend up to the right margin of the page.
* @param $txt (string) String for calculating his height
* @param $reseth (boolean) if true reset the last cell height (default false).
@ -18382,8 +18382,8 @@ class TCPDF {
$dom[$key]['fontname'] = $this->FontFamily;
$dom[$key]['fontstyle'] = $this->FontStyle;
$dom[$key]['fontsize'] = $this->FontSizePt;
$dom[$key]['font-stretch'] = 100;
$dom[$key]['letter-spacing'] = 0;
$dom[$key]['font-stretch'] = $this->font_stretching;
$dom[$key]['letter-spacing'] = $this->font_spacing;
$dom[$key]['stroke'] = $this->textstrokewidth;
$dom[$key]['fill'] = (($this->textrendermode % 2) == 0);
$dom[$key]['clip'] = ($this->textrendermode > 3);