0

我使用烧烤创建了条形码图像。创建图像时,我也可以看到我在该图像中创建条形码的代码。我只想看条形码。在此处输入图像描述

    import java.io.File;
    import net.sourceforge.barbecue.BarcodeFactory;
    import net.sourceforge.barbecue.BarcodeImageHandler;

    /**
     *
     * @author malinda
     */
    public class NewClass {

    public static void main (String [] args) throws Exception {

    //Get 128B Barcode instance from the Factory
    net.sourceforge.barbecue.Barcode barcode = BarcodeFactory.createCode128B("be the coder");
    barcode.setBarHeight(20);
    barcode.setBarWidth(1);

    File imgFile = new File("testsize2.png");

    //Write the bar code to PNG file
    BarcodeImageHandler.savePNG(barcode, imgFile);
      }
    }
4

1 回答 1

1

请注意,Barbecue 似乎已被放弃,并且它对诸如 AWT 之类的类有很强的依赖关系,这使其不适合例如 Android 开发。但是,您应该能够对属性做您想做的事情drawingText

指示条形码数据是否应在条形码下方显示为字符串。

请注意,在绘制条形码后更改此设置将使组件无效并可能强制刷新。

barcode.setDrawingText(false);
于 2016-07-13T00:15:05.223 回答