|
@@ -97,7 +97,7 @@ class Zend_Barcode_Object_Code25 extends Zend_Barcode_Object_ObjectAbstract
|
|
|
$barcodeTable[] = array(1 , $this->_barThickWidth , 0 , 1);
|
|
$barcodeTable[] = array(1 , $this->_barThickWidth , 0 , 1);
|
|
|
$barcodeTable[] = array(0 , $this->_barThinWidth , 0 , 1);
|
|
$barcodeTable[] = array(0 , $this->_barThinWidth , 0 , 1);
|
|
|
$barcodeTable[] = array(1 , $this->_barThinWidth , 0 , 1);
|
|
$barcodeTable[] = array(1 , $this->_barThinWidth , 0 , 1);
|
|
|
- $barcodeTable[] = array(0 , 1);
|
|
|
|
|
|
|
+ $barcodeTable[] = array(0 , $this->_barThinWidth);
|
|
|
|
|
|
|
|
$text = str_split($this->getText());
|
|
$text = str_split($this->getText());
|
|
|
foreach ($text as $char) {
|
|
foreach ($text as $char) {
|
|
@@ -106,7 +106,7 @@ class Zend_Barcode_Object_Code25 extends Zend_Barcode_Object_ObjectAbstract
|
|
|
/* visible, width, top, length */
|
|
/* visible, width, top, length */
|
|
|
$width = $c ? $this->_barThickWidth : $this->_barThinWidth;
|
|
$width = $c ? $this->_barThickWidth : $this->_barThinWidth;
|
|
|
$barcodeTable[] = array(1 , $width , 0 , 1);
|
|
$barcodeTable[] = array(1 , $width , 0 , 1);
|
|
|
- $barcodeTable[] = array(0 , 1);
|
|
|
|
|
|
|
+ $barcodeTable[] = array(0 , $this->_barThinWidth);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|