DeformationResistedBarcode Class
The DeformationResistedBarcode class represents a deformation resisted barcode.
Definition
Package: com.dynamsoft.dbr.intermediate_results
public class DeformationResistedBarcode
Methods
| Method | Description |
|---|---|
DeformationResistedBarcode |
Initializes a new instance of the DeformationResistedBarcode class. |
getFormat |
Gets the format of the deformation resisted barcode. |
setFormat |
Sets the format of the deformation resisted barcode. |
getImageData |
Gets the deformation resisted barcode image. |
setImageData |
Sets the deformation resisted barcode image. |
getLocation |
Gets the location of the deformation resisted barcode. |
setLocation |
Sets the location of the deformation resisted barcode. |
DeformationResistedBarcode
Initializes a new instance of the DeformationResistedBarcode class.
public DeformationResistedBarcode()
public DeformationResistedBarcode(ImageData img, Quadrilateral location, long format)
Parameters
img The barcode image data.
location The location of the deformation resisted barcode.
format The format of the deformation resisted barcode.
See Also
getFormat
Gets the format of the deformation resisted barcode.
public @EnumBarcodeFormat long getFormat()
Return value
Returns the format of the deformation resisted barcode.
See Also
setFormat
Sets the format of the deformation resisted barcode.
public void setFormat(long format)
Parameters
format The format of the deformation resisted barcode.
See Also
getImageData
Gets the deformation resisted barcode image.
public ImageData getImageData()
Return value
Returns the deformation resisted barcode image.
See Also
setImageData
Sets the deformation resisted barcode image.
public void setImageData(ImageData imgData)
Parameters
imgData The deformation resisted barcode image.
See Also
getLocation
Gets the location of the deformation resisted barcode.
public Quadrilateral getLocation()
Return value
Returns the location of the deformation resisted barcode.
See Also
setLocation
Sets the location of the deformation resisted barcode.
public void setLocation(Quadrilateral location)
Parameters
location The location of the deformation resisted barcode.
See Also