| 
 | 
  arun - 2017-12-16 15:42:07  
I am facing one issue, my label size is 1.5inch width and 1 inch height and i am using code39 barcode, when i print the barcode height is very low. How can we increase height of barcode 
 
$hostPrinter = "\\test-PC\test"; 
$speedPrinter = 3; 
$darknessPrint = 6; 
$labelSize = array(450,100); 
$referencePoint = array(300,50); 
 
$z = new ZebraPrinter($hostPrinter, $speedPrinter, $darknessPrint, $labelSize, $referencePoint); 
 
$z->setBarcode(3,240,50,"123456"); #1 -> cod128 
$z->writeLabel("12345678",175,0,4); 
//$z->setBarcode(1, 344, 230, "ContentBarCode"); #1 -> cod128 
//$z->writeLabel("TestLabel",344,180,4); 
$z->setLabelCopies(1); 
$z->print2zebra(); 
  
  arun - 2017-12-16 15:42:08  
I am facing one issue, my label size is 1.5inch width and 1 inch height and i am using code39 barcode, when i print the barcode height is very low. How can we increase height of barcode 
 
$hostPrinter = "\\test-PC\test"; 
$speedPrinter = 3; 
$darknessPrint = 6; 
$labelSize = array(450,100); 
$referencePoint = array(300,50); 
 
$z = new ZebraPrinter($hostPrinter, $speedPrinter, $darknessPrint, $labelSize, $referencePoint); 
 
$z->setBarcode(3,240,50,"123456"); #1 -> cod128 
$z->writeLabel("12345678",175,0,4); 
//$z->setBarcode(1, 344, 230, "ContentBarCode"); #1 -> cod128 
//$z->writeLabel("TestLabel",344,180,4); 
$z->setLabelCopies(1); 
$z->print2zebra(); 
  
   |