Aspose.Barcode for PHP via Java  21.3
Aspose.Barcode for PHP via Java Generation and Recognition API docs
BarCodeRegionParameters Class Reference

Inherits BaseJavaClass.

Public Member Functions

 getQuadrangle ()
 
 getAngle ()
 
 getPoints ()
 
 getRectangle ()
 
 equals (BarCodeRegionParameters $obj)
 
 hashCode ()
 
 toString ()
 

Detailed Description

Represents the recognized barcode's region and barcode angle This sample shows how to get barcode Angle and bounding quadrangle values $generator = new BarcodeGenerator(EncodeTypes::Code128, "12345"); $generator->save("test.png"); $reader = new BarCodeReader("test.png", DecodeType::CODE_39_STANDARD, DecodeType::CODE_128); foreach($reader->readBarCodes() as $result) { print("BarCode CodeText: ".$result->getCodeText()); print("BarCode Angle: ".$result->getRegion()->getAngle()); print("BarCode Quadrangle: ".$result->getRegion()->getQuadrangle()); }

Member Function Documentation

◆ equals()

equals ( BarCodeRegionParameters  $obj)

Returns a value indicating whether this instance is equal to a specified BarCodeRegionParameters value.

Parameters
objAn System.Object value to compare to this instance.
Returns
true if obj has the same value as this instance; otherwise, false.

◆ getAngle()

getAngle ( )

Gets the angle of the barcode (0-360). Value: The angle for barcode (0-360).

◆ getPoints()

getPoints ( )

Gets Points array bounding barcode region Value: Returns Points array bounding barcode region

◆ getQuadrangle()

getQuadrangle ( )

Gets Quadrangle bounding barcode region Value: Returns Quadrangle bounding barcode region

◆ getRectangle()

getRectangle ( )

Gets Rectangle bounding barcode region Value: Returns Rectangle bounding barcode region

◆ hashCode()

hashCode ( )

Returns the hash code for this instance.

Returns
A 32-bit signed integer hash code.

◆ toString()

toString ( )

Returns a human-readable string representation of this BarCodeRegionParameters.

Returns
A string that represents this BarCodeRegionParameters.