Need better scanning performance?
ScaleBarcodeImageStage
ScaleBarcodeImageStage scales barcode images according to the specified scaling mode to optimize recognition. In JSON, it is represented as a Stage object with "Stage": "SST_SCALE_BARCODE_IMAGE".
JSON Structure
Location in template:
BarcodeReaderTaskSettingOptions[i]
└── SectionArray[j] (Section object)
└── StageArray[k] (Stage object where Stage = "SST_SCALE_BARCODE_IMAGE")
Parent object: StageArray within BarcodeDecodingSection
Example:
{
"Stage": "SST_SCALE_BARCODE_IMAGE",
"BarcodeScaleModes": [
{
"Mode": "BSM_AUTO"
}
]
}
- This snippet shows a Stage object configured for barcode image scaling.
- To use it, add this object to the
StageArraywithin a BarcodeDecodingSection.- For the complete JSON structure, see:
Parameters
Stage
Specifies the stage type. Fixed value: SST_SCALE_BARCODE_IMAGE.
| Parameter Details |
|---|
| Type string |
| Required Yes |
Default Value"SST_SCALE_BARCODE_IMAGE" |
BarcodeScaleModes
Defines the scaling mode applied during barcode recognition. See BarcodeScaleModes for details.