PageRenderTime 27ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/common/libraries/plugin/phpexcel/PHPExcel/Shared/PDF/2dbarcodes.php

https://bitbucket.org/chamilo/chamilo-dev/
PHP | 201 lines | 110 code | 8 blank | 83 comment | 10 complexity | d3d40a4ddc6b7ef8ef34c58d7e55e8bf MD5 | raw file
Possible License(s): GPL-2.0, BSD-3-Clause, LGPL-2.1, LGPL-3.0, GPL-3.0, MIT
  1. <?php
  2. //============================================================+
  3. // File name : 2dbarcodes.php
  4. // Version : 1.0.007
  5. // Begin : 2009-04-07
  6. // Last Update : 2010-08-08
  7. // Author : Nicola Asuni - Tecnick.com S.r.l - Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
  8. // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
  9. // -------------------------------------------------------------------
  10. // Copyright (C) 2009-2010 Nicola Asuni - Tecnick.com S.r.l.
  11. //
  12. // This file is part of TCPDF software library.
  13. //
  14. // TCPDF is free software: you can redistribute it and/or modify it
  15. // under the terms of the GNU Lesser General Public License as
  16. // published by the Free Software Foundation, either version 3 of the
  17. // License, or (at your option) any later version.
  18. //
  19. // TCPDF is distributed in the hope that it will be useful, but
  20. // WITHOUT ANY WARRANTY; without even the implied warranty of
  21. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  22. // See the GNU Lesser General Public License for more details.
  23. //
  24. // You should have received a copy of the GNU Lesser General Public License
  25. // along with TCPDF. If not, see <http://www.gnu.org/licenses/>.
  26. //
  27. // See LICENSE.TXT file for more information.
  28. // -------------------------------------------------------------------
  29. //
  30. // Description : PHP class to creates array representations for
  31. // 2D barcodes to be used with TCPDF.
  32. //
  33. //============================================================+
  34. /**
  35. * PHP class to creates array representations for 2D barcodes to be used with TCPDF.
  36. * @package com.tecnick.tcpdf
  37. * @abstract Functions for generating string representation of 2D barcodes.
  38. * @author Nicola Asuni
  39. * @copyright 2009-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
  40. * @link http://www.tcpdf.org
  41. * @license http://www.gnu.org/copyleft/lesser.html LGPL
  42. * @version 1.0.007
  43. */
  44. /**
  45. * PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).<br>
  46. * @name TCPDFBarcode
  47. * @package com.tecnick.tcpdf
  48. * @version 1.0.007
  49. * @author Nicola Asuni
  50. * @link http://www.tcpdf.org
  51. * @license http://www.gnu.org/copyleft/lesser.html LGPL
  52. */
  53. class TCPDF2DBarcode
  54. {
  55. /**
  56. * @var array representation of barcode.
  57. * @access protected
  58. */
  59. protected $barcode_array = false;
  60. /**
  61. * This is the class constructor.
  62. * Return an array representations for 2D barcodes:<ul>
  63. * <li>$arrcode['code'] code to be printed on text label</li>
  64. * <li>$arrcode['num_rows'] required number of rows</li>
  65. * <li>$arrcode['num_cols'] required number of columns</li>
  66. * <li>$arrcode['bcode'][$r][$c] value of the cell is $r row and $c column (0 = transparent, 1 = black)</li></ul>
  67. * @param string $code code to print
  68. * @param string $type type of barcode: <ul><li>RAW: raw mode - comma-separad list of array rows</li><li>RAW2: raw mode - array rows are surrounded by square parenthesis.</li><li>QRCODE : QR-CODE Low error correction</li><li>QRCODE,L : QR-CODE Low error correction</li><li>QRCODE,M : QR-CODE Medium error correction</li><li>QRCODE,Q : QR-CODE Better error correction</li><li>QRCODE,H : QR-CODE Best error correction</li><li>PDF417 : PDF417 (ISO/IEC 15438:2006)</li><li>PDF417,a,e,t,s,f,o0,o1,o2,o3,o4,o5,o6 : PDF417 with parameters: a = aspect ratio (width/height); e = error correction level (0-8); t = total number of macro segments; s = macro segment index (0-99998); f = file ID; o0 = File Name (text); o1 = Segment Count (numeric); o2 = Time Stamp (numeric); o3 = Sender (text); o4 = Addressee (text); o5 = File Size (numeric); o6 = Checksum (numeric). NOTES: Parameters t, s and f are required for a Macro Control Block, all other parametrs are optional. To use a comma character ',' on text options, replace it with the character 255: "\xff".</li></ul>
  69. */
  70. public function __construct($code, $type)
  71. {
  72. $this->setBarcode($code, $type);
  73. }
  74. /**
  75. * Return an array representations of barcode.
  76. * @return array
  77. */
  78. public function getBarcodeArray()
  79. {
  80. return $this->barcode_array;
  81. }
  82. /**
  83. * Set the barcode.
  84. * @param string $code code to print
  85. * @param string $type type of barcode: <ul><li>RAW: raw mode - comma-separad list of array rows</li><li>RAW2: raw mode - array rows are surrounded by square parenthesis.</li><li>QRCODE : QR-CODE Low error correction</li><li>QRCODE,L : QR-CODE Low error correction</li><li>QRCODE,M : QR-CODE Medium error correction</li><li>QRCODE,Q : QR-CODE Better error correction</li><li>QRCODE,H : QR-CODE Best error correction</li><li>PDF417 : PDF417 (ISO/IEC 15438:2006)</li><li>PDF417,a,e,t,s,f,o0,o1,o2,o3,o4,o5,o6 : PDF417 with parameters: a = aspect ratio (width/height); e = error correction level (0-8); t = total number of macro segments; s = macro segment index (0-99998); f = file ID; o0 = File Name (text); o1 = Segment Count (numeric); o2 = Time Stamp (numeric); o3 = Sender (text); o4 = Addressee (text); o5 = File Size (numeric); o6 = Checksum (numeric). NOTES: Parameters t, s and f are required for a Macro Control Block, all other parametrs are optional. To use a comma character ',' on text options, replace it with the character 255: "\xff".</li></ul>
  86. * @return array
  87. */
  88. public function setBarcode($code, $type)
  89. {
  90. $mode = explode(',', $type);
  91. $qrtype = strtoupper($mode[0]);
  92. switch ($qrtype)
  93. {
  94. case 'QRCODE' :
  95. { // QR-CODE
  96. require_once (dirname(__FILE__) . '/qrcode.php');
  97. if (! isset($mode[1]) or (! in_array($mode[1], array('L', 'M', 'Q', 'H'))))
  98. {
  99. $mode[1] = 'L'; // Ddefault: Low error correction
  100. }
  101. $qrcode = new QRcode($code, strtoupper($mode[1]));
  102. $this->barcode_array = $qrcode->getBarcodeArray();
  103. break;
  104. }
  105. case 'PDF417' :
  106. { // PDF417 (ISO/IEC 15438:2006)
  107. require_once (dirname(__FILE__) . '/pdf417.php');
  108. if (! isset($mode[1]) or ($mode[1] === ''))
  109. {
  110. $aspectratio = 2; // default aspect ratio (width / height)
  111. }
  112. else
  113. {
  114. $aspectratio = floatval($mode[1]);
  115. }
  116. if (! isset($mode[2]) or ($mode[2] === ''))
  117. {
  118. $ecl = - 1; // default error correction level (auto)
  119. }
  120. else
  121. {
  122. $ecl = intval($mode[2]);
  123. }
  124. // set macro block
  125. $macro = array();
  126. if (isset($mode[3]) and ($mode[3] !== '') and isset($mode[4]) and ($mode[4] !== '') and isset($mode[5]) and ($mode[5] !== ''))
  127. {
  128. $macro['segment_total'] = intval($mode[3]);
  129. $macro['segment_index'] = intval($mode[4]);
  130. $macro['file_id'] = strtr($mode[5], "\xff", ',');
  131. for($i = 0; $i < 7; ++ $i)
  132. {
  133. $o = $i + 6;
  134. if (isset($mode[$o]) and ($mode[$o] !== ''))
  135. {
  136. // add option
  137. $macro['option_' . $i] = strtr($mode[$o], "\xff", ',');
  138. }
  139. }
  140. }
  141. $qrcode = new PDF417($code, $ecl, $aspectratio, $macro);
  142. $this->barcode_array = $qrcode->getBarcodeArray();
  143. break;
  144. }
  145. case 'RAW' :
  146. case 'RAW2' :
  147. { // RAW MODE
  148. // remove spaces
  149. $code = preg_replace('/[\s]*/si', '', $code);
  150. if (strlen($code) < 3)
  151. {
  152. break;
  153. }
  154. if ($qrtype == 'RAW')
  155. {
  156. // comma-separated rows
  157. $rows = explode(',', $code);
  158. }
  159. else
  160. { // RAW2
  161. // rows enclosed in square parentheses
  162. $code = substr($code, 1, - 1);
  163. $rows = explode('][', $code);
  164. }
  165. $this->barcode_array['num_rows'] = count($rows);
  166. $this->barcode_array['num_cols'] = strlen($rows[0]);
  167. $this->barcode_array['bcode'] = array();
  168. foreach ($rows as $r)
  169. {
  170. $this->barcode_array['bcode'][] = str_split($r, 1);
  171. }
  172. break;
  173. }
  174. case 'TEST' :
  175. { // TEST MODE
  176. $this->barcode_array['num_rows'] = 5;
  177. $this->barcode_array['num_cols'] = 15;
  178. $this->barcode_array['bcode'] = array(array(1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1),
  179. array(0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0), array(0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1,
  180. 0, 0, 1, 0), array(0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0),
  181. array(0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0));
  182. break;
  183. }
  184. default :
  185. {
  186. $this->barcode_array = false;
  187. }
  188. }
  189. }
  190. } // end of class
  191. //============================================================+
  192. // END OF FILE
  193. //============================================================+