This page lists files in the current directory. You can view content, get download/execute commands for Wget, Curl, or PowerShell, or filter the list using wildcards (e.g., `*.sh`).
wget 'https://lists2.roe3.org/hesk/inc/tecnick/Barcode/Type/Square/Datamatrix.php'
<?php
/**
* Datamatrix.php
*
* @since 2015-02-21
* @category Library
* @package Barcode
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2010-2020 Nicola Asuni - Tecnick.com LTD
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-barcode
*
* This file is part of tc-lib-barcode software library.
*/
namespace Com\Tecnick\Barcode\Type\Square;
use \Com\Tecnick\Barcode\Exception as BarcodeException;
use \Com\Tecnick\Barcode\Type\Square\Datamatrix\Data;
use \Com\Tecnick\Barcode\Type\Square\Datamatrix\Encode;
/**
* Com\Tecnick\Barcode\Type\Square\Datamatrix
*
* Datamatrix Barcode type class
* DATAMATRIX (ISO/IEC 16022)
*
* @since 2015-02-21
* @category Library
* @package Barcode
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2010-2016 Nicola Asuni - Tecnick.com LTD
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-barcode
*/
class Datamatrix extends \Com\Tecnick\Barcode\Type\Square
{
/**
* Barcode format
*
* @var string
*/
protected $format = 'DATAMATRIX';
/**
* Array of codewords.
*
* @var array
*/
protected $cdw = array();
/**
* Binary grid
*
* @var array
*/
protected $grid = array();
/**
* Datamatrix Encoding object
*
* @var \Com\Tecnick\Barcode\Type\Square\Datamatrix\Encode
*/
protected $dmx;
/**
* Datamatrix shape key (S=square, R=rectangular)
*
* @var string
*/
protected $shape = 'S';
/**
* Datamatrix variant (N=default, GS1=FNC1 codeword in first place)
*
* @var string
*/
protected $gsonemode = false;
/**
* Set extra (optional) parameters:
* 1: SHAPE - S=square (default), R=rectangular
* 2: MODE - N=default, GS1 = the FNC1 codeword is added in the first position of Data Matrix ECC 200 version
*/
protected function setParameters()
{
parent::setParameters();
// shape
if (isset($this->params[0]) && ($this->params[0] == 'R')) {
$this->shape = 'R';
}
// mode
if (isset($this->params[1]) && ($this->params[1] == 'GS1')) {
$this->gsonemode = true;
}
}
/**
* Add padding codewords
*
* @param int $size Max barcode size in codewords
* @param int $ncw Number of codewords
*
* @throws BarcodeException in case of error
*/
protected function addPadding($size, $ncw)
{
if ($size <= $ncw) {
return;
}
if (($this->dmx->last_enc != Data::ENC_ASCII) && ($this->dmx->last_enc != Data::ENC_BASE256)) {
// return to ASCII encodation before padding
if ($this->dmx->last_enc == Data::ENC_EDF) {
$this->cdw[] = 124;
} else {
$this->cdw[] = 254;
}
++$ncw;
}
if ($size > $ncw) {
// add first pad
$this->cdw[] = 129;
++$ncw;
// add remaining pads
for ($i = $ncw; $i < $size; ++$i) {
$this->cdw[] = $this->dmx->get253StateCodeword(129, $i);
}
}
}
/**
* Get the codewords
*
* @return array params
*
* @throws BarcodeException in case of error
*/
protected function getCodewords()
{
if (strlen((string)$this->code) == 0) {
throw new BarcodeException('Empty input');
}
// get data codewords
$this->cdw = $this->getHighLevelEncoding($this->code);
// number of data codewords
$ncw = count($this->cdw);
// check size
if ($ncw > 1560) {
throw new BarcodeException('the input is too large to fit the barcode');
}
// get minimum required matrix size.
$params = Data::getPaddingSize($this->shape, $ncw);
$this->addPadding($params[11], $ncw);
$errorCorrection = new \Com\Tecnick\Barcode\Type\Square\Datamatrix\ErrorCorrection;
$this->cdw = $errorCorrection->getErrorCorrection($this->cdw, $params[13], $params[14], $params[15]);
return $params;
}
/**
* Set the grid
*
* @param int $idx
* @param array $places
* @param int $row
* @param int $col
* @param int $rdx
* @param int $cdx
* @param int $rdri
* @param int $rdci
*/
protected function setGrid(&$idx, &$places, &$row, &$col, &$rdx, &$cdx, &$rdri, &$rdci)
{
// braw bits by case
if ($rdx == 0) {
// top finder pattern
$this->grid[$row][$col] = intval(($cdx % 2) == 0);
} elseif ($rdx == $rdri) {
// bottom finder pattern
$this->grid[$row][$col] = 1;
} elseif ($cdx == 0) {
// left finder pattern
$this->grid[$row][$col] = 1;
} elseif ($cdx == $rdci) {
// right finder pattern
$this->grid[$row][$col] = intval(($rdx % 2) > 0);
} else {
// data bit
if ($places[$idx] < 2) {
$this->grid[$row][$col] = $places[$idx];
} else {
// codeword ID
$cdw_id = (floor($places[$idx] / 10) - 1);
// codeword BIT mask
$cdw_bit = pow(2, (8 - ($places[$idx] % 10)));
$this->grid[$row][$col] = (($this->cdw[$cdw_id] & $cdw_bit) == 0) ? 0 : 1;
}
++$idx;
}
}
/**
* Get high level encoding using the minimum symbol data characters for ECC 200
*
* @param $data (string) data to encode
*
* @return array of codewords
*
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
*/
protected function getHighLevelEncoding($data)
{
// STEP A. Start in ASCII encodation.
$enc = Data::ENC_ASCII; // current encoding mode
$this->dmx->last_enc = $enc; // last used encoding
$pos = 0; // current position
$cdw = array(); // array of codewords to be returned
$cdw_num = 0; // number of data codewords
$data_length = strlen($data); // number of chars
while ($pos < $data_length) {
// Determine if current char is FNC1 (don't encode it, just pass it through)
if ($this->gsonemode && ($data[$pos] == chr(232))) {
$cdw[] = 232;
++$pos;
++$cdw_num;
continue;
}
switch ($enc) {
case Data::ENC_ASCII:
// STEP B. While in ASCII encodation
$this->dmx->encodeASCII($cdw, $cdw_num, $pos, $data_length, $data, $enc);
break;
case Data::ENC_C40:
// Upper-case alphanumeric
case Data::ENC_TXT:
// Lower-case alphanumeric
case Data::ENC_X12:
// ANSI X12
$this->dmx->encodeTXT($cdw, $cdw_num, $pos, $data_length, $data, $enc);
break;
case Data::ENC_EDF:
// F. While in EDIFACT (EDF) encodation
$this->dmx->encodeEDF($cdw, $cdw_num, $pos, $data_length, $field_length, $data, $enc);
break;
case Data::ENC_BASE256:
// G. While in Base 256 (B256) encodation
$this->dmx->encodeBase256($cdw, $cdw_num, $pos, $data_length, $field_length, $data, $enc);
break;
}
$this->dmx->last_enc = $enc;
}
return $cdw;
}
/**
* Get the bars array
*
* @throws BarcodeException in case of error
*/
protected function setBars()
{
$this->dmx = new Encode($this->shape);
$params = $this->getCodewords();
// initialize empty arrays
$this->grid = array_fill(0, ($params[2] * $params[3]), 0);
// get placement map
$places = $this->dmx->getPlacementMap($params[2], $params[3]);
// fill the grid with data
$this->grid = array();
$idx = 0;
// region data row max index
$rdri = ($params[4] - 1);
// region data column max index
$rdci = ($params[5] - 1);
// for each horizontal region
for ($hr = 0; $hr < $params[8]; ++$hr) {
// for each row on region
for ($rdx = 0; $rdx < $params[4]; ++$rdx) {
// get row
$row = (($hr * $params[4]) + $rdx);
// for each vertical region
for ($vr = 0; $vr < $params[9]; ++$vr) {
// for each column on region
for ($cdx = 0; $cdx < $params[5]; ++$cdx) {
// get column
$col = (($vr * $params[5]) + $cdx);
$this->setGrid($idx, $places, $row, $col, $rdx, $cdx, $rdri, $rdci);
}
}
}
}
$this->processBinarySequence($this->grid);
}
}
wget 'https://lists2.roe3.org/hesk/inc/tecnick/Barcode/Type/Square/PdfFourOneSeven.php'
<?php
/**
* PdfFourOneSeven.php
*
* @since 2015-02-21
* @category Library
* @package Barcode
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2015-2016 Nicola Asuni - Tecnick.com LTD
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-barcode
*
* This file is part of tc-lib-barcode software library.
*/
namespace Com\Tecnick\Barcode\Type\Square;
use \Com\Tecnick\Barcode\Exception as BarcodeException;
use \Com\Tecnick\Barcode\Type\Square\PdfFourOneSeven\Data;
/**
* Com\Tecnick\Barcode\Type\Square\PdfFourOneSeven
*
* PdfFourOneSeven Barcode type class
* PDF417 (ISO/IEC 15438:2006)
*
* PDF417 (ISO/IEC 15438:2006) is a 2-dimensional stacked bar code created by Symbol Technologies in 1991.
* It is one of the most popular 2D codes because of its ability to be read with slightly modified handheld
* laser or linear CCD scanners.
* TECHNICAL DATA / FEATURES OF PDF417:
* Encodable Character Set: All 128 ASCII Characters (including extended)
* Code Type: Continuous, Multi-Row
* Symbol Height: 3 - 90 Rows
* Symbol Width: 90X - 583X
* Bidirectional Decoding: Yes
* Error Correction Characters: 2 - 512
* Maximum Data Characters: 1850 text, 2710 digits, 1108 bytes
*
* @since 2015-02-21
* @category Library
* @package Barcode
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2015-2016 Nicola Asuni - Tecnick.com LTD
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-barcode
*/
class PdfFourOneSeven extends \Com\Tecnick\Barcode\Type\Square\PdfFourOneSeven\Compaction
{
/**
* Barcode format
*
* @var string
*/
protected $format = 'PDF417';
/**
* Row height respect X dimension of single module
*
* @var int
*/
protected $row_height = 2;
/**
* Horizontal quiet zone in modules
*
* @var int
*/
protected $quiet_vertical = 2;
/**
* Vertical quiet zone in modules
*
* @var int
*/
protected $quiet_horizontal = 2;
/**
* Aspect ratio (width / height)
*
* @var int
*/
protected $aspectratio = 2;
/**
* Error correction level (0-8);
* Default -1 = automatic correction level
*
* @var int
*/
protected $ecl = -1;
/**
* Information for macro block
*
* @var int
*/
protected $macro = array();
/**
* Set extra (optional) parameters
*/
protected function setParameters()
{
parent::setParameters();
// aspect ratio
if (!empty($this->params[0]) && (($aspectratio = floatval($this->params[0])) >= 1)) {
$this->aspectratio = $aspectratio;
}
// error correction level (auto)
if (isset($this->params[1]) && (($ecl = intval($this->params[1])) >= 0) && ($ecl <= 8)) {
$this->ecl = $ecl;
}
// macro block
$this->setMacroBlockParam();
}
/**
* Set macro block parameter
*/
protected function setMacroBlockParam()
{
if (isset($this->params[4])
&& ($this->params[2] !== '')
&& ($this->params[3] !== '')
&& ($this->params[4] !== '')
) {
$this->macro['segment_total'] = intval($this->params[2]);
$this->macro['segment_index'] = intval($this->params[3]);
$this->macro['file_id'] = strtr($this->params[4], "\xff", ',');
for ($idx = 0; $idx < 7; ++$idx) {
$opt = $idx + 5;
if (isset($this->params[$opt]) && ($this->params[$opt] !== '')) {
$this->macro['option_'.$idx] = strtr($this->params[$opt], "\xff", ',');
}
}
}
}
/**
* Get the bars array
*
* @throws BarcodeException in case of error
*/
protected function setBars()
{
if (strlen((string)$this->code) == 0) {
throw new BarcodeException('Empty input');
}
$barcode = $this->getBinSequence();
$this->processBinarySequence($barcode);
}
/**
* Get macro control block codewords
*
* @param int $numcw Number of codewords
*
* @return array
*/
protected function getMacroBlock(&$numcw)
{
if (empty($this->macro)) {
return array();
}
$macrocw = array();
// beginning of macro control block
$macrocw[] = 928;
// segment index
$cdw = $this->getCompaction(902, sprintf('%05d', $this->macro['segment_index']), false);
$macrocw = array_merge($macrocw, $cdw);
// file ID
$cdw = $this->getCompaction(900, $this->macro['file_id'], false);
$macrocw = array_merge($macrocw, $cdw);
// optional fields
$optmodes = array(900,902,902,900,900,902,902);
$optsize = array(-1,2,4,-1,-1,-1,2);
foreach ($optmodes as $key => $omode) {
if (isset($this->macro['option_'.$key])) {
$macrocw[] = 923;
$macrocw[] = $key;
if ($optsize[$key] == 2) {
$this->macro['option_'.$key] = sprintf('%05d', $this->macro['option_'.$key]);
} elseif ($optsize[$key] == 4) {
$this->macro['option_'.$key] = sprintf('%010d', $this->macro['option_'.$key]);
}
$cdw = $this->getCompaction($omode, $this->macro['option_'.$key], false);
$macrocw = array_merge($macrocw, $cdw);
}
}
if ($this->macro['segment_index'] == ($this->macro['segment_total'] - 1)) {
// end of control block
$macrocw[] = 922;
}
// update total codewords
$numcw += count($macrocw);
return $macrocw;
}
/**
* Get codewords
*
* @param int $rows number of rows
* @param int $cols number of columns
* @param int $ecl eroor correction level
*
* @return array
*
* @throws BarcodeException in case of error
*/
public function getCodewords(&$rows, &$cols, &$ecl)
{
$codewords = array(); // array of code-words
// get the input sequence array
$sequence = $this->getInputSequences($this->code);
foreach ($sequence as $seq) {
$cws = $this->getCompaction($seq[0], $seq[1], true);
$codewords = array_merge($codewords, $cws);
}
if ($codewords[0] == 900) {
// Text Alpha is the default mode, so remove the first code
array_shift($codewords);
}
// count number of codewords
$numcw = count($codewords);
if ($numcw > 925) {
throw new BarcodeException('The maximum codeword capaciy has been reached: '.$numcw.' > 925');
}
$macrocw = $this->getMacroBlock($numcw);
// set error correction level
$ecl = $this->getErrorCorrectionLevel($this->ecl, $numcw);
// number of codewords for error correction
$errsize = (2 << $ecl);
// calculate number of columns (number of codewords per row) and rows
$nce = ($numcw + $errsize + 1);
$cols = min(30, max(1, round((sqrt(4761 + (68 * $this->aspectratio * $this->row_height * $nce)) - 69) / 34)));
$rows = min(90, max(3, ceil($nce / $cols)));
$size = ($cols * $rows);
if ($size > 928) {
// set dimensions to get maximum capacity
if (abs($this->aspectratio - (17 * 29 / 32)) < abs($this->aspectratio - (17 * 16 / 58))) {
$cols = 29;
$rows = 32;
} else {
$cols = 16;
$rows = 58;
}
$size = 928;
}
// calculate padding
$pad = ($size - $nce);
if ($pad > 0) {
// add padding
$codewords = array_merge($codewords, array_fill(0, $pad, 900));
}
if (!empty($macrocw)) {
// add macro section
$codewords = array_merge($codewords, $macrocw);
}
// Symbol Length Descriptor (number of data codewords including Symbol Length Descriptor and pad codewords)
$sld = ($size - $errsize);
// add symbol length description
array_unshift($codewords, $sld);
// calculate error correction
$ecw = $this->getErrorCorrection($codewords, $ecl);
// add error correction codewords
return array_merge($codewords, $ecw);
}
/**
* Creates a PDF417 object as binary string
*
* @return array barcode as binary string
*
* @throws BarcodeException in case of error
*/
public function getBinSequence()
{
$rows = 0;
$cols = 0;
$ecl = 0;
$codewords = $this->getCodewords($rows, $cols, $ecl);
$barcode = '';
// add horizontal quiet zones to start and stop patterns
$pstart = str_repeat('0', $this->quiet_horizontal).Data::$start_pattern;
$this->nrows = ($rows * $this->row_height) + (2 * $this->quiet_vertical);
$this->ncols = (($cols + 2) * 17) + 35 + (2 * $this->quiet_horizontal);
// build rows for vertical quiet zone
$empty_row = ','.str_repeat('0', $this->ncols);
$empty_rows = str_repeat($empty_row, $this->quiet_vertical);
$barcode .= $empty_rows;
$kcw = 0; // codeword index
$cid = 0; // initial cluster
// for each row
for ($rix = 0; $rix < $rows; ++$rix) {
// row start code
$row = $pstart;
switch ($cid) {
case 0:
$rval = ((30 * intval($rix / 3)) + intval(($rows - 1) / 3));
$cval = ((30 * intval($rix / 3)) + ($cols - 1));
break;
case 1:
$rval = ((30 * intval($rix / 3)) + ($ecl * 3) + (($rows - 1) % 3));
$cval = ((30 * intval($rix / 3)) + intval(($rows - 1) / 3));
break;
case 2:
$rval = ((30 * intval($rix / 3)) + ($cols - 1));
$cval = ((30 * intval($rix / 3)) + ($ecl * 3) + (($rows - 1) % 3));
break;
}
// left row indicator
$row .= sprintf('%17b', Data::$clusters[$cid][$rval]);
// for each column
for ($cix = 0; $cix < $cols; ++$cix) {
$row .= sprintf('%17b', Data::$clusters[$cid][$codewords[$kcw]]);
++$kcw;
}
// right row indicator
$row .= sprintf('%17b', Data::$clusters[$cid][$cval]);
// row stop code
$row .= Data::$stop_pattern.str_repeat('0', $this->quiet_horizontal);
$brow = ','.str_repeat($row, $this->row_height);
$barcode .= $brow;
++$cid;
if ($cid > 2) {
$cid = 0;
}
}
$barcode .= $empty_rows;
return $barcode;
}
}
wget 'https://lists2.roe3.org/hesk/inc/tecnick/Barcode/Type/Square/QrCode.php'
<?php
/**
* QrCode.php
*
* @since 2015-02-21
* @category Library
* @package Barcode
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2015-2016 Nicola Asuni - Tecnick.com LTD
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-barcode
*
* This file is part of tc-lib-barcode software library.
*/
namespace Com\Tecnick\Barcode\Type\Square;
use \Com\Tecnick\Barcode\Exception as BarcodeException;
use \Com\Tecnick\Barcode\Type\Square\QrCode\Data;
use \Com\Tecnick\Barcode\Type\Square\QrCode\ByteStream;
use \Com\Tecnick\Barcode\Type\Square\QrCode\Split;
use \Com\Tecnick\Barcode\Type\Square\QrCode\Encoder;
/**
* Com\Tecnick\Barcode\Type\Square\QrCode
*
* QrCode Barcode type class
*
* @since 2015-02-21
* @category Library
* @package Barcode
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2015-2016 Nicola Asuni - Tecnick.com LTD
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-barcode
*/
class QrCode extends \Com\Tecnick\Barcode\Type\Square
{
/**
* Barcode format
*
* @var string
*/
protected $format = 'QRCODE';
/**
* QR code version.
* The Size of QRcode is defined as version. Version is an integer value from 1 to 40.
* Version 1 is 21*21 matrix. And 4 modules increases whenever 1 version increases.
* So version 40 is 177*177 matrix.
*
* @var int
*/
protected $version = 0;
/**
* Error correction level
*
* @var int
*/
protected $level = 0;
/**
* Encoding mode
*
* @var int
*/
protected $hint = 2;
/**
* Boolean flag, if false the input string will be converted to uppercase.
*
* @var boolean
*/
protected $case_sensitive = true;
/**
* If false, checks all masks available,
* otherwise the value indicates the number of masks to be checked, mask id are random
*
* @var int
*/
protected $random_mask = false;
/**
* If true, estimates best mask (spec. default, but extremally slow;
* set to false to significant performance boost but (propably) worst quality code
*
* @var bool
*/
protected $best_mask = true;
/**
* Default mask used when $this->best_mask === false
*
* @var int
*/
protected $default_mask = 2;
/**
* ByteStream class object
*
* @var \Com\Tecnick\Barcode\Type\Square\QrCode\ByteStream
*/
protected $bsObj;
/**
* Set extra (optional) parameters:
* 1: LEVEL - error correction level: L, M, Q, H
* 2: HINT - encoding mode: NL=variable, NM=numeric, AN=alphanumeric, 8B=8bit, KJ=KANJI, ST=STRUCTURED
* 3: VERSION - integer value from 1 to 40
* 4: CASE SENSITIVE - if 0 the input string will be converted to uppercase
* 5: RANDOM MASK - false or number of masks to be checked
* 6: BEST MASK - true to find the best mask (slow)
* 7: DEFAULT MASK - mask to use when the best mask option is false
*
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
* @SuppressWarnings(PHPMD.NPathComplexity)
*/
protected function setParameters()
{
parent::setParameters();
// level
if (!isset($this->params[0]) || !isset(Data::$errCorrLevels[$this->params[0]])) {
$this->params[0] = 'L';
}
$this->level = Data::$errCorrLevels[$this->params[0]];
// hint
if (!isset($this->params[1]) || !isset(Data::$encodingModes[$this->params[1]])) {
$this->params[1] = '8B';
}
$this->hint = Data::$encodingModes[$this->params[1]];
// version
if (!isset($this->params[2]) || ($this->params[2] < 0) || ($this->params[2] > Data::QRSPEC_VERSION_MAX)) {
$this->params[2] = 0;
}
$this->version = intval($this->params[2]);
// case sensitive
if (!isset($this->params[3])) {
$this->params[3] = 1;
}
$this->case_sensitive = (bool)$this->params[3];
// random mask mode - number of masks to be checked
if (!empty($this->params[4])) {
$this->random_mask = intval($this->params[4]);
}
// find best mask
if (!isset($this->params[5])) {
$this->params[5] = 1;
}
$this->best_mask = (bool)$this->params[5];
// default mask
if (!isset($this->params[6])) {
$this->params[6] = 2;
}
$this->default_mask = intval($this->params[6]);
}
/**
* Get the bars array
*
* @throws BarcodeException in case of error
*/
protected function setBars()
{
if (strlen((string)$this->code) == 0) {
throw new BarcodeException('Empty input');
}
$this->bsObj = new ByteStream($this->hint, $this->version, $this->level);
// generate the qrcode
$this->processBinarySequence(
$this->binarize(
$this->encodeString($this->code)
)
);
}
/**
* Convert the frame in binary form
*
* @param array $frame Array to binarize
*
* @return array frame in binary form
*/
protected function binarize($frame)
{
$len = count($frame);
// the frame is square (width = height)
foreach ($frame as &$frameLine) {
for ($idx = 0; $idx < $len; ++$idx) {
$frameLine[$idx] = (ord($frameLine[$idx]) & 1) ? '1' : '0';
}
}
return $frame;
}
/**
* Encode the input string
*
* @param string $data input string to encode
*/
protected function encodeString($data)
{
if (!$this->case_sensitive) {
$data = $this->toUpper($data);
}
$split = new Split($this->bsObj, $this->hint, $this->version);
$datacode = $this->bsObj->getByteStream($split->getSplittedString($data));
$this->version = $this->bsObj->version;
$enc = new Encoder(
$this->version,
$this->level,
$this->random_mask,
$this->best_mask,
$this->default_mask
);
return $enc->encodeMask(-1, $datacode);
}
/**
* Convert input string into upper case mode
*
* @param string $data Data
*
* @return
*/
protected function toUpper($data)
{
$len = strlen($data);
$pos = 0;
while ($pos < $len) {
$mode = $this->bsObj->getEncodingMode($data, $pos);
if ($mode == Data::$encodingModes['KJ']) {
$pos += 2;
} else {
if ((ord($data[$pos]) >= ord('a')) && (ord($data[$pos]) <= ord('z'))) {
$data[$pos] = chr(ord($data[$pos]) - 32);
}
$pos++;
}
}
return $data;
}
}
wget 'https://lists2.roe3.org/hesk/inc/tecnick/Barcode/Type/Square/Raw.php'
<?php
/**
* Raw.php
*
* @since 2015-02-21
* @category Library
* @package Barcode
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2010-2016 Nicola Asuni - Tecnick.com LTD
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-barcode
*
* This file is part of tc-lib-barcode software library.
*/
namespace Com\Tecnick\Barcode\Type\Square;
use \Com\Tecnick\Barcode\Exception as BarcodeException;
/**
* Com\Tecnick\Barcode\Type\Square\Raw
*
* Raw Barcode type class
* RAW MODE (comma-separated rows)
*
* @since 2015-02-21
* @category Library
* @package Barcode
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2010-2016 Nicola Asuni - Tecnick.com LTD
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-barcode
*/
class Raw extends \Com\Tecnick\Barcode\Type\Raw
{
/**
* Barcode type
*
* @var string
*/
protected $type = 'square';
/**
* Barcode format
*
* @var string
*/
protected $format = 'SRAW';
}