mirror of
https://github.com/vdm-io/tcpdf.git
synced 2024-11-22 12:55:10 +00:00
5.9.114
This commit is contained in:
parent
c10ad7a97e
commit
1fb14f22f3
@ -1,3 +1,6 @@
|
||||
5.9.114 (2011-09-04)
|
||||
- A bug related to column position was fixed.
|
||||
|
||||
5.9.113 (2011-08-24)
|
||||
- This release include two new experimental files for parsing an existing PDF document (the integration with TCPDF is under development).
|
||||
|
||||
|
@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076
|
||||
------------------------------------------------------------
|
||||
|
||||
Name: TCPDF
|
||||
Version: 5.9.113
|
||||
Release date: 2011-08-24
|
||||
Version: 5.9.114
|
||||
Release date: 2011-09-04
|
||||
Author: Nicola Asuni
|
||||
|
||||
Copyright (c) 2002-2011:
|
||||
|
16
tcpdf.php
16
tcpdf.php
@ -1,9 +1,9 @@
|
||||
<?php
|
||||
//============================================================+
|
||||
// File name : tcpdf.php
|
||||
// Version : 5.9.113
|
||||
// Version : 5.9.114
|
||||
// Begin : 2002-08-03
|
||||
// Last Update : 2011-08-18
|
||||
// Last Update : 2011-09-04
|
||||
// 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.
|
||||
// -------------------------------------------------------------------
|
||||
@ -136,7 +136,7 @@
|
||||
* Tools to encode your unicode fonts are on fonts/utils directory.</p>
|
||||
* @package com.tecnick.tcpdf
|
||||
* @author Nicola Asuni
|
||||
* @version 5.9.113
|
||||
* @version 5.9.114
|
||||
*/
|
||||
|
||||
// Main configuration file. Define the K_TCPDF_EXTERNAL_CONFIG constant to skip this file.
|
||||
@ -148,7 +148,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>
|
||||
* @package com.tecnick.tcpdf
|
||||
* @brief PHP class for generating PDF documents without requiring external extensions.
|
||||
* @version 5.9.113
|
||||
* @version 5.9.114
|
||||
* @author Nicola Asuni - info@tecnick.com
|
||||
*/
|
||||
class TCPDF {
|
||||
@ -159,7 +159,7 @@ class TCPDF {
|
||||
* Current TCPDF version.
|
||||
* @private
|
||||
*/
|
||||
private $tcpdf_version = '5.9.113';
|
||||
private $tcpdf_version = '5.9.114';
|
||||
|
||||
// Protected properties
|
||||
|
||||
@ -24662,7 +24662,11 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
|
||||
$xshift = $this->colxshift;
|
||||
// set X position of the current column by case
|
||||
$listindent = ($this->listindentlevel * $this->listindent);
|
||||
$colpos = ($col * ($this->columns[$col]['w'] + $this->columns[$col]['s']));
|
||||
// calculate column X position
|
||||
$colpos = 0;
|
||||
for ($i=0; $i < $col; ++$i) {
|
||||
$colpos += ($this->columns[$i]['w'] + $this->columns[$i]['s']);
|
||||
}
|
||||
if ($this->rtl) {
|
||||
$x = $this->w - $this->original_rMargin - $colpos;
|
||||
$this->rMargin = ($this->w - $x + $listindent);
|
||||
|
Loading…
Reference in New Issue
Block a user