Barcode barcode = BarcodeFactory.createEAN128(value);
barcode.setBarHeight(barheight);
barcode.setBarWidth(barwidth);
barcode.setResolution(dpi);
barcode.setDrawingText(true);
barcode.setFont(font1);
File imgFile = new File(pathLocation);
//Write the bar code to PNG file
BarcodeImageHandler.savePNG(barcode, imgFile);
i want barcode text under the barcode. but its not show any text under barcode
question from:https://stackoverflow.com/questions/66062692/show-barcode-text-under-barcode-image-using-barbecue-barcode