ScaledBarcodeImageUnit Class
The ScaledBarcodeImageUnit class represents a unit that contains scaled barcode image. It inherits from the IntermediateResultUnit class.
Definition
Package: com.dynamsoft.dbr.intermediate_results
Inheritance: IntermediateResultUnit -> ScaledBarcodeImageUnit
public class ScaledBarcodeImageUnit extends IntermediateResultUnit
Methods
| Method | Description |
|---|---|
getImageData |
Gets the scaled barcode image data. |
setImageData |
Sets the scaled image data. |
getImageData
Gets the scaled barcode image data.
public ImageData getImageData()
Return value
Returns the scaled image of the barcode.
See Also
setImageData
Sets the scaled image data.
public void setImageData(ImageData imgData) throws BarcodeReaderException
Parameters
imgData The scaled image data.
Exceptions
BarcodeReaderException If an error occurs while setting the image data.
See Also