barcode icon indicating copy to clipboard operation
barcode copied to clipboard

barcode.php - Generate barcodes from a single PHP file. MIT license.

Results 24 barcode issues
Sort by recently updated
recently updated
newest added

Can we add text above the barcode and just opposite to it

HI, I would like make barre code with 1PUSBRS485F1.8M but only write USBRS485F1.8M texte ? Is it possiblz to make that ? Thank by advance Eric

I can't scan the produced ean-13 barcode. This is my code: `include 'barcode.php'; $format = 'png'; $symbology = 'ean-13-pad'; $data = '978020137963'; $options = ''; $generator = new barcode_generator(); $name...

Hallo, /* Replace * with missing or check digit. */ ->(-) while (($o = st(rr)pos($data, '*')) !== false) { ->(+) while (($o = st(r)pos($data, '*')) !== false) { ->(-) for...

Hi there, Is it possible to reduce bar width without reducing the whole barcode's width?

Hi, I cannot be able to pass url with & in barcode dmtx or qr. If I use %26 (& in urlencode), barcode seams do not draw correcly. I need...

Hello, how can I save generated barcode as image into file? Is this possible? Or Can I use generated barcode with dompdf? Thank you.

I'm doing this: include('barcode.php'); $generator = new barcode_generator(); $svg = $generator->render_svg('code-128', '13123'); echo $svg; And I'm getting this error: Uncaught Error: Call to a member function render_svg() on null If...