apr

Barode for suuno manob

apr
Jun 4th, 2014
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1. // include Barcode39 class
  2. include "Barcode39.php"; //http://www.shayanderson.com/ui/media/Barcode39.zip
  3.  
  4. // set Barcode39 object
  5. $bc = new Barcode39("Shay Anderson");
  6.  
  7. // display new barcode
  8. $bc->draw();
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19. You can also easily adjust the barcode bar sizes and text size: // set object
  20. $bc = new Barcode39("123-ABC");
  21.  
  22. // set text size
  23. $bc->barcode_text_size = 5;
  24.  
  25. // set barcode bar thickness (thick bars)
  26. $bc->barcode_bar_thick = 4;
  27.  
  28. // set barcode bar thickness (thin bars)
  29. $bc->barcode_bar_thin = 2;
  30.  
  31. // save barcode GIF file
  32. $bc->draw("barcode.gif");
  33.  
  34.  
  35.  
  36.  
  37. Main Source  : http://www.shayanderson.com/php/php-barcode-generator-class-code-39.htm
Advertisement
Add Comment
Please, Sign In to add comment