https://github.com/firehed/code39
Generate CODE39 barcodes in PHP
https://github.com/firehed/code39
Last synced: about 1 year ago
JSON representation
Generate CODE39 barcodes in PHP
- Host: GitHub
- URL: https://github.com/firehed/code39
- Owner: Firehed
- Created: 2011-04-07T16:48:40.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2011-04-07T16:55:41.000Z (about 15 years ago)
- Last Synced: 2025-03-24T09:21:10.906Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 86.9 KB
- Stars: 13
- Watchers: 4
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
# Code 39 Barcode generator
Simple PHP class for generating Code39 barcode images. Really simple stuff: just do
barcode::code39('text to encode');
Optionally, add a height in pixels and/or a width multiplier:
barcode::code39('text to encode', $height_in_px, $width_multiplier);
Currently it will always send the "Content-type: image/png" header and output the code. Future revisions may support writing to file, etc.