From 74e79abf2e09948d19063c7d7ae98e91b494eca2 Mon Sep 17 00:00:00 2001
From: nicolaasuni
- * @name TCPDFBarcode
- * @package com.tecnick.tcpdf
- * @version 1.0.007
- * @author Nicola Asuni
- */
+/**
+ * @class TCPDF2DBarcode
+ * PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).
+ * @name TCPDFBarcode
+ * @package com.tecnick.tcpdf
+ * @version 1.0.007
+ * @author Nicola Asuni
+ */
class TCPDF2DBarcode {
/**
diff --git a/CHANGELOG.TXT b/CHANGELOG.TXT
index 32fafb8..6b0c738 100755
--- a/CHANGELOG.TXT
+++ b/CHANGELOG.TXT
@@ -1,3 +1,6 @@
+5.9.033 (2010-12-18)
+ - Source code documetnation was improved.
+
5.9.032 (2010-12-18)
- Default font stretching and spacing values are now inherited by HTML methods.
diff --git a/README.TXT b/README.TXT
index 105a8ba..7e3f760 100755
--- a/README.TXT
+++ b/README.TXT
@@ -8,7 +8,7 @@ http://sourceforge.net/donate/index.php?group_id=128076
------------------------------------------------------------
Name: TCPDF
-Version: 5.9.032
+Version: 5.9.033
Release date: 2010-12-18
Author: Nicola Asuni
diff --git a/barcodes.php b/barcodes.php
index dc00f5c..a16ed6e 100755
--- a/barcodes.php
+++ b/barcodes.php
@@ -33,19 +33,20 @@
//============================================================+
/**
+ * @file
* PHP class to creates array representations for common 1D barcodes to be used with TCPDF.
* @package com.tecnick.tcpdf
* @author Nicola Asuni
* @version 1.0.012
*/
- /**
- * PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).
- * @name TCPDFBarcode
- * @package com.tecnick.tcpdf
- * @version 1.0.012
- * @author Nicola Asuni
- */
+/**
+ * @class TCPDFBarcode
+ * PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).
+ * @package com.tecnick.tcpdf
+ * @version 1.0.012
+ * @author Nicola Asuni
+ */
class TCPDFBarcode {
/**
diff --git a/fonts/utils/makeallttffonts.php b/fonts/utils/makeallttffonts.php
index 8bcc4cd..824210f 100755
--- a/fonts/utils/makeallttffonts.php
+++ b/fonts/utils/makeallttffonts.php
@@ -43,9 +43,6 @@
* Process all TTF files on current directory to build TCPDF compatible font files.
* @package com.tecnick.tcpdf
* @author Nicola Asuni
- * @copyright Copyright © 2004-2009, Nicola Asuni - Tecnick.com S.r.l. - ITALY - www.tecnick.com - info@tecnick.com
- * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
- * @link www.tecnick.com
* @since 2008-12-07
*/
diff --git a/fonts/utils/makefont.php b/fonts/utils/makefont.php
index 52ac24f..49d24a6 100755
--- a/fonts/utils/makefont.php
+++ b/fonts/utils/makefont.php
@@ -43,14 +43,11 @@
/**
* Utility to generate font definition files fot TCPDF.
* @author Nicola Asuni, Olivier Plathey, Steven Wittens
- * @copyright 2004-2008 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
* @package com.tecnick.tcpdf
- * @link http://www.tcpdf.org
- * @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
/**
- *
+ * Convert a Font for TCPDF
* @param $fontfile (string) path to font file (TTF, OTF or PFB).
* @param $fmfile (string) font metrics file (UFM or AFM).
* @param $embedded (boolean) Set to false to not embed the font, true otherwise (default).
diff --git a/htmlcolors.php b/htmlcolors.php
index db848a4..d1075dd 100755
--- a/htmlcolors.php
+++ b/htmlcolors.php
@@ -32,11 +32,12 @@
//============================================================+
/**
+ * @file
* Array of WEB safe colors
* @author Nicola Asuni
* @package com.tecnick.tcpdf
* @since 2.9.000 (2008-03-26)
-*/
+ */
/**
* Array of WEB safe colors
diff --git a/pdf417.php b/pdf417.php
index 59df925..995daa2 100644
--- a/pdf417.php
+++ b/pdf417.php
@@ -44,6 +44,7 @@
//============================================================+
/**
+ * @file
* Class to create PDF417 barcode arrays for TCPDF class.
* PDF417 (ISO/IEC 15438:2006) is a 2-dimensional stacked bar code created by Symbol Technologies in 1991.
* (requires PHP bcmath extension)
@@ -82,9 +83,9 @@ if (!defined('PDF417DEFS')) {
// #*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#
/**
+ * @class PDF417
* Class to create PDF417 barcode arrays for TCPDF class.
* PDF417 (ISO/IEC 15438:2006) is a 2-dimensional stacked bar code created by Symbol Technologies in 1991.
- * @name PDF417
* @package com.tecnick.tcpdf
* @author Nicola Asuni
* @version 1.0.003
diff --git a/qrcode.php b/qrcode.php
index 614740b..4f91676 100644
--- a/qrcode.php
+++ b/qrcode.php
@@ -64,6 +64,7 @@
//============================================================+
/**
+ * @file
* Class to create QR-code arrays for TCPDF class.
* QR Code symbol is a 2D barcode that can be scanned by handy terminals such as a mobile phone with CCD.
* The capacity of QR Code is up to 7000 digits or 4000 characters, and has high robustness.
@@ -273,6 +274,7 @@ if (!function_exists('str_split')) {
// #####################################################
/**
+ * @class QRcode
* Class to create QR-code arrays for TCPDF class.
* QR Code symbol is a 2D barcode that can be scanned by handy terminals such as a mobile phone with CCD.
* The capacity of QR Code is up to 7000 digits or 4000 characters, and has high robustness.
@@ -282,7 +284,6 @@ if (!function_exists('str_split')) {
* This class is derived from "PHP QR Code encoder" by Dominik Dzienia (http://phpqrcode.sourceforge.net/) based on "libqrencode C library 3.1.1." by Kentaro Fukuchi (http://megaui.net/fukuchi/works/qrencode/index.en.html), contains Reed-Solomon code written by Phil Karn, KA9Q. QR Code is registered trademark of DENSO WAVE INCORPORATED (http://www.denso-wave.com/qrcode/index-e.html).
* Please read comments on this class source file for full copyright and license information.
*
- * @name QRcode
* @package com.tecnick.tcpdf
* @author Nicola Asuni
* @version 1.0.009
diff --git a/spotcolors.php b/spotcolors.php
index 27976ff..c7e1671 100644
--- a/spotcolors.php
+++ b/spotcolors.php
@@ -32,6 +32,7 @@
//============================================================+
/**
+ * @file
* Arrays of Spot Colors for TCPDF library
* @author Nicola Asuni
* @package com.tecnick.tcpdf
diff --git a/tcpdf.php b/tcpdf.php
index 468f082..63e461e 100755
--- a/tcpdf.php
+++ b/tcpdf.php
@@ -1,7 +1,7 @@
* TCPDF project (http://www.tcpdf.org) was originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.
* TCPDF main features are:
@@ -133,24 +134,21 @@
* Tools to encode your unicode fonts are on fonts/utils directory.