|
|||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |
Class Summary | |
---|---|
BarCodeOrientation | The orientation of the recognized barcode. |
BarCodeReader | BarCodeReader encapsulates an image which may contain one or several barcodes, it then can perform Read operation to detect barcodes Detect an code39 barcode with supplement BarCodeReadType barCodeReadType = BarCodeReadType.getCode39Standard(); String file = "path/to/image/image.png"; BarCodeReader reader = new BarCodeReader(file, barCodeReadType); while(reader.read()) { System.out.println("BarCode Type: "+reader.getReadType()); System.out.println("BarCode CodeText: " + reader.getCodeText()); } reader.Close(); |
BarCodeReadType | Specify the type of barcode to read. |
BarCodeRegion | Represents the barcode's region Draw edges of the barcode region, then fill it. |
RecognitionHints | |
RecognitionHints.ImageAccessHints | |
RecognitionHints.ImageBinarizationHints | |
RecognitionHints.OrientationHints | |
RecognitionHints.ScanStrengthHints | |
RecognitionHints.ScanStrengthHints.ScanStrength | |
RecognitionHints.ThresholdHints |
Exception Summary | |
---|---|
BarCodeRecognitionException | General exception thrown by BarCodeReader, inherited from BarCodeException |
|
|||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |