ScaledBarcodeImageUnit Class
The ScaledBarcodeImageUnit class represents a unit that contains scaled up barcode image. It inherits from the IntermediateResultUnit class.
Definition
Namespace: Dynamsoft.DBR.intermediate_results
Inheritance: IntermediateResultUnit -> ScaledBarcodeImageUnit
class ScaledBarcodeImageUnit : IntermediateResultUnit
Methods
| Method | Description |
|---|---|
GetImageData |
Gets the scaled up barcode image data. |
SetImageData |
Sets the scaled up image data. |
Inherited Methods
Checkout inherited methods from IntermediateResultUnit for more details.
GetImageData
Gets the scaled up barcode image data.
ImageData GetImageData()
Return value
Returns the scaled up image of the barcode.
See Also
SetImageData
Sets the scaled up image data.
int SetImageData(ImageData imgData)
Parameters
[in] imgData The pointer to the scaled up image data.
Return value
Returns 0 if successful, otherwise returns a negative value.
See Also