6.0.006 (2013-03-27)

- Bug related to SVG and EPS files on xobjects were fixed.
This commit is contained in:
nicolaasuni 2013-03-27 18:33:18 +00:00
parent b1afffff53
commit c4e39163a7
5 changed files with 12 additions and 9 deletions

View File

@ -1,3 +1,6 @@
6.0.006 (2013-03-27)
- Bug related to SVG and EPS files on xobjects were fixed.
6.0.005 (2013-03-26)
- Default font path was fixed.

View File

@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076
------------------------------------------------------------
Name: TCPDF
Version: 6.0.005
Release date: 2013-03-26
Version: 6.0.006
Release date: 2013-03-27
Author: Nicola Asuni
Copyright (c) 2002-2013:

View File

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

View File

@ -3,7 +3,7 @@
// File name : tcpdf_static.php
// Version : 1.0.000
// Begin : 2002-08-03
// Last Update : 2013-03-26
// Last Update : 2013-03-27
// 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
// -------------------------------------------------------------------
@ -55,7 +55,7 @@ class TCPDF_STATIC {
* Current TCPDF version.
* @private static
*/
private static $tcpdf_version = '6.0.005';
private static $tcpdf_version = '6.0.006';
/**
* String alias for total number of pages.

View File

@ -1,7 +1,7 @@
<?php
//============================================================+
// File name : tcpdf.php
// Version : 6.0.005
// Version : 6.0.006
// Begin : 2002-08-03
// Last Update : 2013-03-26
// Author : Nicola Asuni - Tecnick.com LTD - Manor Coach House, Church Hill, Aldershot, Hants, GU12 4RQ, UK - www.tecnick.com - info@tecnick.com
@ -139,7 +139,7 @@
* Tools to encode your unicode fonts are on fonts/utils directory.</p>
* @package com.tecnick.tcpdf
* @author Nicola Asuni
* @version 6.0.005
* @version 6.0.006
*/
if (!defined('K_TCPDF_EXTERNAL_CONFIG')) {
@ -168,7 +168,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.005
* @version 6.0.006
* @author Nicola Asuni - info@tecnick.com
*/
class TCPDF {
@ -9200,7 +9200,7 @@ class TCPDF {
protected function _putxobjects() {
foreach ($this->xobjects as $key => $data) {
if (isset($data['outdata'])) {
$stream = trim($data['outdata']);
$stream = str_replace($this->epsmarker, '', trim($data['outdata']));
$out = $this->_getobj($data['n'])."\n";
$out .= '<<';
$out .= ' /Type /XObject';