30
1
mirror of https://github.com/vdm-io/tcpdf.git synced 2024-06-12 10:22:20 +00:00

6.0.048 (2013-11-24)

- SVG vars are now reset in ImageSVG() method.
This commit is contained in:
nicolaasuni 2013-11-24 18:58:06 +00:00
parent d2ded0b698
commit b9c8ff7302
2 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
<?php <?php
//============================================================+ //============================================================+
// File name : tcpdf_images.php // File name : tcpdf_images.php
// Version : 1.0.001 // Version : 1.0.002
// Begin : 2002-08-03 // Begin : 2002-08-03
// Last Update : 2013-08-05 // Last Update : 2013-11-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
// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
// ------------------------------------------------------------------- // -------------------------------------------------------------------
@ -38,7 +38,7 @@
* This is a PHP class that contains static image methods for the TCPDF class.<br> * This is a PHP class that contains static image methods for the TCPDF class.<br>
* @package com.tecnick.tcpdf * @package com.tecnick.tcpdf
* @author Nicola Asuni * @author Nicola Asuni
* @version 1.0.001 * @version 1.0.002
*/ */
/** /**
@ -46,7 +46,7 @@
* Static image methods used by the TCPDF class. * Static image methods used by the TCPDF class.
* @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 1.0.000 * @version 1.0.002
* @author Nicola Asuni - info@tecnick.com * @author Nicola Asuni - info@tecnick.com
*/ */
class TCPDF_IMAGES { class TCPDF_IMAGES {
@ -235,7 +235,7 @@ class TCPDF_IMAGES {
* @public static * @public static
*/ */
public static function _parsepng($file) { public static function _parsepng($file) {
$f = fopen($file, 'rb'); $f = @fopen($file, 'rb');
if ($f === false) { if ($f === false) {
// Can't open image file // Can't open image file
return false; return false;

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.047'; private static $tcpdf_version = '6.0.048';
/** /**
* String alias for total number of pages. * String alias for total number of pages.