Aspose.BarCode for Java是一款可以帮助开发人员进行各种条形码生成与识别的Java组件,在新的8.2版本中该产品主要作了如下的更新:
支持生成Aztec条形码
// Initialize BarCode builder class object
BarCodeBuilder builder = new BarCodeBuilder();
// Set the barcode text
builder.setCodeText("25");
// Set symbology type as Aztec
builder.setSymbologyType(Symbology.Aztec);
// save barcode
builder.save("Aztec.png");
在新的版本中支持为OneCode和AustraliaPost条形码进行校验符验证
// Create an instance of BarCodeReader class and load an existing oncecode barcode.
BarCodeReader r = new BarCodeReader("onecode.png", DecodeType.ONE_CODE);
// Set the ChecksumValidation property to Off.
r.setChecksumValidation(ChecksumValidation.Off);
while (r.read())
{
System.out.println(r.getCodeType() + ": " + r.getCodeText());
System.out.println("CheckSum: " + r.getCheckSum());
}
- 在新的版本中支持设置Metered Key
- 对处理Postnet条形码进行了增强
- 对读取DataMatix条形码进行了增强
- 在新的版本中对 Dutch KIX条形码的处理进行了增强
- 对带有长文本的 Aztec条形码的处理进行了加强
- 对从PDF文件中读取条形码进行了大幅增强