我正在使用烧烤在 java 中生成条形码。它成功生成条形码,但有一个小问题。我想在条形码上方添加一些小文字。我还想更改条形码下方文本/数字的字体大小/样式,并删除下划线。你怎么办?
这是我的代码:
private void btnGenerateBarcodeActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
String text=txtText.getText();
File file = new File("path/to/destination/file");
try {
Barcode barcode = BarcodeFactory.createCode128(text);
barcode.setBarHeight(50);
barcode.setBarWidth(1);
BarcodeImageHandler.saveJPEG(barcode,file);
JOptionPane.showMessageDialog(this, "Barcode generated successfully!",
"Success",JOptionPane.INFORMATION_MESSAGE);
} catch (Exception e) {
JOptionPane.showMessageDialog(this, "Error generating barcode\n"+e.toString(),
"Error",JOptionPane.ERROR_MESSAGE);
}
}