如何创建条形码图像而不使用烧烤库在底部包含文本

时间:2015-07-24 22:11:21

标签: barcode barbecue

我想生成一个barcode.png文件,但生成的文件也包含条形码编号,我不想要,我只想要没有文字的图像。

怎么做? 以下是我的代码: -

var s1 = 1234 + '';
var s2 = String(1234);

//s1.someNewFunc();   error?
//s2.someNewFunc();

1 个答案:

答案 0 :(得分:0)

仅将其添加到您的代码中:

barcode3.setDrawingText(false);

以上方法将从条形码中删除文本。完整的代码

Barcode barcode3;
barcode3 = BarcodeFactory.createCode128("CODE128x1");
barcode3.setDrawingText(false);
barcode3.setResolution(300);
BarcodeImageHandler.savePNG(barcode3, new File("Code128-1.png"));