I need to generate barcode image in format of code39. I need to use specific font 'w39H.fft' , 'w39LC.fft'
I am using this library to generate the bar-code image.
https://github.com/fobiaweb/Barcode39
include('Barcode39.php');
$bc = new Barcode39("This is test barcode srting *&*%$# :");
// 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");
But i could not find any option to use font. You can also suggest any other library.