PNG  IHDR* pHYs+ IDATx]n#; cdLb Ǚ[at¤_:uP}>!Usă cag޿ ֵNu`ݼTâabO7uL&y^wFٝA"l[|ŲHLN밪4*sG3|Dv}?+y߉{OuOAt4Jj.u]Gz*҉sP'VQKbA1u\`& Af;HWj hsO;ogTu uj7S3/QzUr&wS`M$X_L7r2;aE+ώ%vikDA:dR+%KzƉo>eOth$z%: :{WwaQ:wz%4foɹE[9<]#ERINƻv溂E%P1i01 |Jvҗ&{b?9g=^wζXn/lK::90KwrюO\!ջ3uzuGv^;騢wq<Iatv09:tt~hEG`v;3@MNZD.1]L:{ծI3`L(÷ba")Y.iljCɄae#I"1 `3*Bdz>j<fU40⨬%O$3cGt]j%Fߠ_twJ;ABU8vP3uEԑwQ V:h%))LfraqX-ۿX]v-\9I gl8tzX ]ecm)-cgʒ#Uw=Wlێn(0hPP/ӨtQ“&J35 $=]r1{tLuǮ*i0_;NƝ8;-vݏr8+U-kruȕYr0RnC]*ެ(M:]gE;{]tg(#ZJ9y>utRDRMdr9㪩̞zֹb<ģ&wzJM"iI( .ꮅX)Qw:9,i좜\Ԛi7&N0:asϓc];=ΗOӣ APqz93 y $)A*kVHZwBƺnWNaby>XMN*45~ղM6Nvm;A=jֲ.~1}(9`KJ/V F9[=`~[;sRuk]rєT!)iQO)Y$V ی ۤmzWz5IM Zb )ˆC`6 rRa}qNmUfDsWuˤV{ Pݝ'=Kֳbg,UҘVz2ﴻnjNgBb{? ߮tcsͻQuxVCIY۠:(V뺕 ٥2;t`@Fo{Z9`;]wMzU~%UA蛚dI vGq\r82iu +St`cR.6U/M9IENDB` REDROOM
PHP 5.6.40
Preview: upcext2.barcode.php Size: 3.33 KB
/home/ankaservis/azad.ankaservis.com/muhasebe/barkod/class/upcext2.barcode.php

<?php
if(!defined('IN_CB'))die('You are not allowed to access to this page.');

/**
 * upcext2.php
 *--------------------------------------------------------------------
 *
 * Sub-Class - UPC Supplemental Barcode 2 digits
 *
 * Working with UPC-A, UPC-E, EAN-13, EAN-8
 * This includes 2 digits (normaly for publications)
 * Must be placed next to UPC or EAN Code
 *
 *--------------------------------------------------------------------
 * Revision History
 * V1.00	17 jun	2004	Jean-Sebastien Goupil
 *--------------------------------------------------------------------
 * Copyright (C) Jean-Sebastien Goupil
 * http://other.lookstrike.com/barcode/
 */
class upcext2 extends BarCode {
	protected $keys = array(), $code = array(), $codeParity = array();
	private $starting, $ending;
	protected $text;
	protected $textfont;

	/**
	 * Constructor
	 *
	 * @param int $maxHeight
	 * @param FColor $color1
	 * @param FColor $color2
	 * @param int $res
	 * @param string $text
	 * @param int $textfont
	 */
	public function __construct($maxHeight,FColor $color1,FColor $color2,$res,$text,$textfont) {
		BarCode::__construct($maxHeight,$color1,$color2,$res);
		$this->keys = array('0','1','2','3','4','5','6','7','8','9');
		$this->code = array(
			'2100',	/* 0 */
			'1110',	/* 1 */
			'1011',	/* 2 */
			'0300',	/* 3 */
			'0021',	/* 4 */
			'0120',	/* 5 */
			'0003',	/* 6 */
			'0201',	/* 7 */
			'0102',	/* 8 */
			'2001'	/* 9 */
		);
		// Parity, 0=Odd, 1=Even. Depending on ?%4
		$this->codeParity = array(
			array(0,0),	/* 0 */
			array(0,1),	/* 1 */
			array(1,0),	/* 2 */
			array(1,1)	/* 3 */
		);
		$this->setText($text);
		$this->textfont = $textfont;
	}

	/**
	 * Saves Text
	 *
	 * @param string $text
	 */
	public function setText($text){
		$this->text = $text;
	}

	private function inverse($text,$inverse=1) {
		if($inverse == 1)
			$text = strrev($text);
		return $text;
	}

	/**
	 * Draws the barcode
	 *
	 * @param ressource $im
	 */
	public function draw($im) {
		$error_stop = false;

		// Checking if all chars are allowed
		for($i=0;$i<strlen($this->text);$i++) {
			if(!is_int(array_search($this->text[$i],$this->keys))) {
				$this->DrawError($im,'Char \''.$this->text[$i].'\' not allowed.');
				$error_stop = true;
			}
		}
		if($error_stop == false) {
			// Must contains 2 chars
			if(strlen($this->text) != 2) {
				$this->DrawError($im,'Must contains 2 chars.');
				$error_stop = true;
			}
			if($error_stop == false) {
				// If we have to write text, we move the barcode to the bottom to put text
				$this->positionY = ($this->textfont == 0)?0:15;
				// Starting Code
				$this->DrawChar($im,'001',1);
				// Code
				for($i=0;$i<2;$i++){
					$this->DrawChar($im,$this->inverse($this->findCode($this->text[$i]),$this->codeParity[intval($this->text%4)][$i]),2);
					if($i == 0)
						$this->DrawChar($im,'00',2);	// Inter-char
				}
				$this->lastX = $this->positionX;
				$this->lastY = $this->maxHeight;
				$this->DrawText($im);
			}
		}
	}

	/**
	 * Overloaded method for drawing special label
	 *
	 * @param ressource $im
	 */
	protected function DrawText($im) {
		if($this->textfont != 0) {
			$bar_color = (is_null($this->color1))?NULL:$this->color1->allocate($im);
			if(!is_null($bar_color))
				imagestring($im,$this->textfont,$this->positionX/2-imagefontwidth($this->textfont)*(strlen($this->text)/2),1,$this->text,$bar_color);
			$this->lastY += 15;
		}
	}
};
?>

Directory Contents

Dirs: 0 × Files: 22

Name Size Perms Modified Actions
3.16 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
2.89 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
3.29 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
3.84 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
4.38 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
9.07 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
4.71 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
6.29 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
845 B lrw-r--r-- 2017-05-21 19:35:02
Edit Download
2.06 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
3.16 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
1.02 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
18.21 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
3.37 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
2.03 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
3.49 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
3.04 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
1.70 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
6.46 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
8.38 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
3.33 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
4.50 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
© 2026 REDROOM — Secure File Manager. All rights reserved. Built with ❤️ & Red Dark UI