Relative Content

Tag Archive for phpbarcode

How to move text outside bearer box and add quiet zone as EAN-14 format?

public function draw($im) { $temp_text = $this->text; // Starting Code $this->drawChar($im, ‘0000’, true); // Chars $c = strlen($temp_text); for ($i = 0; $i < $c; $i += 2) { $temp_bar = ”; $c2 = strlen($this->findCode($temp_text[$i])); for ($j = 0; $j < $c2; $j++) { $temp_bar .= substr($this->findCode($temp_text[$i]), $j, 1); $temp_bar .= substr($this->findCode($temp_text[$i + 1]), $j, […]