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)
- Datamatrix Base256 encoding was fixed.

View File

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

View File

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

View File

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

View File

@ -1,7 +1,7 @@
<?php
//============================================================+
// File name : tcpdf.php
// Version : 6.0.069
// Version : 6.0.070
// Begin : 2002-08-03
// Last Update : 2014-04-24
// 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>
* @package com.tecnick.tcpdf
* @author Nicola Asuni
* @version 6.0.069
* @version 6.0.070
*/
// 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>
* @package com.tecnick.tcpdf
* @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
*/
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
$this->_out('q'.$this->epsmarker);
// 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
$e = $ox * $this->k * (1 - $svgscale_x);
$f = ($this->h - $oy) * $this->k * (1 - $svgscale_y);