在条形码上方添加文字并使用烧烤更改fontsize

时间:2018-02-20 08:32:46

标签: java barcode barbecue

我正在使用烧烤来生成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);
    }
}      

barcode

0 个答案:

没有答案