Class Code128ExtendedParameters
java.lang.Object
com.aspose.barcode.barcoderecognition.BaseExtendedParameters
com.aspose.barcode.barcoderecognition.Code128ExtendedParameters
Stores special data of Code128 recognized barcode
Represents the recognized barcode's region and barcode angle
This sample shows how to get code128 raw valuesBarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Code128, "12345"); generator.save("test.png"); BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_128); for(BarCodeResult result : reader.readBarCodes()) { System.out.println("BarCode Type: " + result.getCodeTypeName()); System.out.println("BarCode CodeText: " + result.getCodeText()); System.out.println("Code128 Data Portions: " + result.getExtended().getCode128()); }
-
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns a value indicating whether this instance is equal to a specifiedCode128ExtendedParametersvalue.GetsCode128DataPortionarray of recognized Code128 barcodeinthashCode()Returns the hash code for this instance.toString()Returns a human-readable string representation of thisCode128ExtendedParameters.Methods inherited from class com.aspose.barcode.barcoderecognition.BaseExtendedParameters
isEmpty
-
Method Details
-
getCode128DataPortions
Gets
Value: Array of theCode128DataPortionarray of recognized Code128 barcodeCode128DataPortion. -
equals
Returns a value indicating whether this instance is equal to a specified
Code128ExtendedParametersvalue. -
hashCode
public int hashCode()Returns the hash code for this instance.
-
toString
Returns a human-readable string representation of this
Code128ExtendedParameters.
-