![]() |
Aspose.Barcode for PHP via Java Generation and Recognition API docs
|
Inherits BaseJavaClass.
Public Member Functions | |
| getQRStructuredAppendModeBarCodesQuantity () | |
| getQRStructuredAppendModeBarCodeIndex () | |
| getQRStructuredAppendModeParityData () | |
| equals ($obj) | |
| hashCode () | |
| toString () | |
Static Public Member Functions | |
| static | op_Equality (QRExtendedParameters $first, QRExtendedParameters $second) |
| static | op_Inequality (QRExtendedParameters $first, QRExtendedParameters $second) |
Stores a QR Structured Append information of recognized barcode This sample shows how to get QR Structured Append data
$reader = new BarCodeReader("test.png", DecodeType::QR); foreach($reader->readBarCodes() as $result) { print("BarCode Type: ".$result->getCodeTypeName()); print("BarCode CodeText: ".$result->getCodeText()); print("QR Structured Append Quantity: ".$result->getExtended()->getQR()->getQRStructuredAppendModeBarCodesQuantity()); print("QR Structured Append Index: ".$result->getExtended()->getQR()->getQRStructuredAppendModeBarCodeIndex()); print("QR Structured Append ParityData: ".$result->getExtended()->getQR()->getQRStructuredAppendModeParityData()); }
| equals | ( | $obj | ) |
Returns a value indicating whether this instance is equal to a specified QRExtendedParameters value.
| obj | An object value to compare to this instance. |
| getQRStructuredAppendModeBarCodeIndex | ( | ) |
Gets the index of the QR structured append mode barcode. Index starts from 0. Default value is -1.Value: The quantity of the QR structured append mode barcode.
| getQRStructuredAppendModeBarCodesQuantity | ( | ) |
Gets the QR structured append mode barcodes quantity. Default value is -1.Value: The quantity of the QR structured append mode barcode.
| getQRStructuredAppendModeParityData | ( | ) |
Gets the QR structured append mode parity data. Default value is -1.Value: The index of the QR structured append mode barcode.
| hashCode | ( | ) |
Returns the hash code for this instance.
|
static |
Returns a value indicating whether the first QRExtendedParameters value is equal to the second.
| first | A first compared value |
| second | A second compared value |
|
static |
Returns a value indicating if the first QRExtendedParameters value is different from the second.
| first | A first compared value |
| second | A second compared value |
| toString | ( | ) |
Returns a human-readable string representation of this QRExtendedParameters.