/home/techb158/exp.abdallabala.com/vendor/mpdf/mpdf/src/Barcode
NameSizeModeActions
AbstractBarcode.php11030644editdlrm
BarcodeException.php880644editdlrm
BarcodeInterface.php3300644editdlrm
Codabar.php21500644editdlrm
Code11.php26810644editdlrm
Code39.php67430644editdlrm
Code93.php75610644editdlrm
Code128.php74010644editdlrm
EanExt.php31220644editdlrm
EanUpc.php70130644editdlrm
I25.php31810644editdlrm
Imb.php105270644editdlrm
Msi.php23380644editdlrm
Postnet.php28350644editdlrm
Rm4Scc.php43170644editdlrm
S25.php24680644editdlrm
Edit: /home/techb158/exp.abdallabala.com/vendor/mpdf/mpdf/src/Barcode/AbstractBarcode.php (1103B)
data; } /** * @param string $key * * @return mixed */ public function getKey($key) { return isset($this->data[$key]) ? $this->data[$key] : null; } /** * @return string */ public function getChecksum() { return $this->getKey('checkdigit'); } /** * Convert binary barcode sequence to barcode array * * @param string $seq * @param mixed[] $barcodeData * * @return mixed[] */ protected function binseqToArray($seq, array $barcodeData) { $len = strlen($seq); $w = 0; $k = 0; for ($i = 0; $i < $len; ++$i) { $w += 1; if (($i == ($len - 1)) or (($i < ($len - 1)) and ($seq[$i] != $seq[($i + 1)]))) { if ($seq[$i] == '1') { $t = true; // bar } else { $t = false; // space } $barcodeData['bcode'][$k] = ['t' => $t, 'w' => $w, 'h' => 1, 'p' => 0]; $barcodeData['maxw'] += $w; ++$k; $w = 0; } } return $barcodeData; } }