DeformationResistedBarcode Class
The DeformationResistedBarcode class represents a deformation resisted barcode.
Definition
Namespace: Dynamsoft.DBR.intermediate_results
class DeformationResistedBarcode
Methods
| Method | Description |
|---|---|
DeformationResistedBarcode |
Constructs a DeformationResistedBarcode object. |
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 Constructor
Constructs a DeformationResistedBarcode object with the specified parameters.
DeformationResistedBarcode();
DeformationResistedBarcode(ImageData img, Quadrilateral location, EnumBarcodeFormat format);
Parameters
img the deformation resisted barcode image.
location The location of the deformation resisted barcode.
format The format of the deformation resisted barcode.
GetFormat
Gets the format of the deformation resisted barcode.
EnumBarcodeFormat GetFormat()
Return value
Returns the format of the deformation resisted barcode.
See Also
SetFormat
Sets the format of the deformation resisted barcode.
void SetFormat(EnumBarcodeFormat format)
Parameters
format The format of the deformation resisted barcode.
See Also
GetImageData
Gets the deformation resisted barcode image.
ImageData GetImageData()
Return value
Returns the deformation resisted barcode image.
See Also
SetImageData
Sets the deformation resisted barcode image.
void SetImageData(ImageData img)
Parameters
img the deformation resisted barcode image.
See Also
GetLocation
Gets the location of the deformation resisted barcode.
Quadrilateral GetLocation()
Return value
Returns the location of the deformation resisted barcode.
See Also
SetLocation
Sets the location of the deformation resisted barcode.
void SetLocation(Quadrilateral loc)
Parameters
loc The location of the deformation resisted barcode.
See Also