I'm having trouble generating PHP barcodes in the code39
pattern, containing 10 digits (numbers only), for printing the web page containing the bar code on thermal printers .
I have tested several classes, but they have an error in the optical reading.
Can anyone recommend a good class in PHP to generate barcode in code39
and allow you to adjust height and width of the barcode?
Preferably, something that can be used as follows:
<img src="/barcode.php?code=' . $cod_barras . '&largura=180&altura=80" />
Important: I need it to work without any dependency beyond PHP and the GD
library.
Thanks in advance for any help!