Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // include Barcode39 class
- include "Barcode39.php"; //http://www.shayanderson.com/ui/media/Barcode39.zip
- // set Barcode39 object
- $bc = new Barcode39("Shay Anderson");
- // display new barcode
- $bc->draw();
- You can also easily adjust the barcode bar sizes and text size: // set object
- $bc = new Barcode39("123-ABC");
- // set text size
- $bc->barcode_text_size = 5;
- // set barcode bar thickness (thick bars)
- $bc->barcode_bar_thick = 4;
- // set barcode bar thickness (thin bars)
- $bc->barcode_bar_thin = 2;
- // save barcode GIF file
- $bc->draw("barcode.gif");
- Main Source : http://www.shayanderson.com/php/php-barcode-generator-class-code-39.htm
Advertisement
Add Comment
Please, Sign In to add comment