Class BarCodeRegionParameters
- java.lang.Object
-
- com.aspose.barcode.barcoderecognition.BarCodeRegionParameters
-
public final class BarCodeRegionParameters extends java.lang.Object
Represents the recognized barcode's region and barcode angle
This sample shows how to get barcode Angle and bounding quadrangle values
BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Code128, "12345"); generator.save("c:\\test.png"); BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.CODE_39_STANDARD, DecodeType.CODE_128); for(BarCodeResult result : reader.readBarCodes()) { System.out.println("BarCode CodeText: " + result.getCodeText()); System.out.println("BarCode Angle: " + result.getRegion().getAngle()); System.out.println("BarCode Quadrangle: " + result.getRegion().getQuadrangle()); }
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Returns a value indicating whether this instance is equal to a specifiedBarCodeRegionParameters
value.double
getAngle()
Gets the angle of the barcode (0-360).android.graphics.Point[]
getPoints()
GetsPoint
s array bounding barcode regionQuadrangle
getQuadrangle()
GetsAspose.BarCode.BarCodeRecognition.Quadrangle
bounding barcode regionandroid.graphics.Rect
getRectangle()
GetsSystem.Drawing.Rectangle
bounding barcode regionint
hashCode()
Returns the hash code for this instance.java.lang.String
toString()
Returns a human-readable string representation of thisBarCodeRegionParameters
.
-
-
-
Method Detail
-
getQuadrangle
public Quadrangle getQuadrangle()
Gets
Value: ReturnsAspose.BarCode.BarCodeRecognition.Quadrangle
bounding barcode regionAspose.BarCode.BarCodeRecognition.Quadrangle
bounding barcode region
-
getAngle
public double getAngle()
Gets the angle of the barcode (0-360).
Value: The angle for barcode (0-360).
-
getPoints
public android.graphics.Point[] getPoints()
Gets
Value: ReturnsPoint
s array bounding barcode regionPoint
s array bounding barcode region
-
getRectangle
public android.graphics.Rect getRectangle()
Gets
Value: ReturnsSystem.Drawing.Rectangle
bounding barcode regionSystem.Drawing.Rectangle
bounding barcode region
-
equals
public boolean equals(java.lang.Object obj)
Returns a value indicating whether this instance is equal to a specified
BarCodeRegionParameters
value.- Overrides:
equals
in classjava.lang.Object
- Parameters:
obj
- An System.Object value to compare to this instance.- Returns:
<b>true</b>
if obj has the same value as this instance; otherwise,<b>false</b>
.
-
hashCode
public int hashCode()
Returns the hash code for this instance.
- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- A 32-bit signed integer hash code.
-
toString
public java.lang.String toString()
Returns a human-readable string representation of this
BarCodeRegionParameters
.- Overrides:
toString
in classjava.lang.Object
- Returns:
- A string that represents this
BarCodeRegionParameters
.
-
-