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

6.0.070 (2014-04-24)

- Bug #910 "An SVG image is being cut off (with clipping mask) when you use align options" was fixed.
This commit is contained in:
nicolaasuni 2014-04-24 19:25:32 +01:00
parent 872cb6ab57
commit b45bdb2138
5 changed files with 10 additions and 7 deletions

View File

@ -1,3 +1,6 @@
6.0.070 (2014-04-24)
- Bug #910 "An SVG image is being cut off (with clipping mask) when you use align options" was fixed.
6.0.069 (2014-04-24) 6.0.069 (2014-04-24)
- Datamatrix Base256 encoding was fixed. - Datamatrix Base256 encoding was fixed.

View File

@ -8,7 +8,7 @@ http://sourceforge.net/donate/index.php?group_id=128076
------------------------------------------------------------ ------------------------------------------------------------
Name: TCPDF Name: TCPDF
Version: 6.0.069 Version: 6.0.070
Release date: 2014-04-24 Release date: 2014-04-24
Author: Nicola Asuni Author: Nicola Asuni

View File

@ -1,6 +1,6 @@
{ {
"name": "tecnick.com/tcpdf", "name": "tecnick.com/tcpdf",
"version": "6.0.069", "version": "6.0.070",
"homepage": "http://www.tcpdf.org/", "homepage": "http://www.tcpdf.org/",
"type": "library", "type": "library",
"description": "TCPDF is a PHP class for generating PDF documents.", "description": "TCPDF is a PHP class for generating PDF documents.",

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.068'; private static $tcpdf_version = '6.0.070';
/** /**
* 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.069 // Version : 6.0.070
// Begin : 2002-08-03 // Begin : 2002-08-03
// Last Update : 2014-04-24 // Last Update : 2014-04-24
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com // Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com
@ -104,7 +104,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.069 * @version 6.0.070
*/ */
// TCPDF configuration // TCPDF configuration
@ -128,7 +128,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.069 * @version 6.0.070
* @author Nicola Asuni - info@tecnick.com * @author Nicola Asuni - info@tecnick.com
*/ */
class TCPDF { class TCPDF {
@ -22869,7 +22869,7 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
// save the current graphic state // save the current graphic state
$this->_out('q'.$this->epsmarker); $this->_out('q'.$this->epsmarker);
// set initial clipping mask // set initial clipping mask
$this->Rect($x, $y, $w, $h, 'CNZ', array(), array()); $this->Rect($ximg, $y, $w, $h, 'CNZ', array(), array());
// scale and translate // scale and translate
$e = $ox * $this->k * (1 - $svgscale_x); $e = $ox * $this->k * (1 - $svgscale_x);
$f = ($this->h - $oy) * $this->k * (1 - $svgscale_y); $f = ($this->h - $oy) * $this->k * (1 - $svgscale_y);