Need better scanning performance?
PageSize
PageSize sets the page size (width by height in pixels) of the target image.
JSON Structure
Location in template:
DocumentNormalizerTaskSettingOptions[i]
└── SectionArray[j] (Section object)
└── StageArray[k] (Stage object where Stage = "SST_DESKEW_IMAGE")
└── PageSize
Parent object: DeskewImageStage
Example:
{
"PageSize": [210, 297]
}
- This snippet shows only the
PageSizeparameter.- To use it, embed this parameter within a DeskewImageStage object in the complete JSON structure.
- For the complete JSON structure, see:
Parameter Details
| PageSize Parameter Details |
|---|
| Type int[2] |
| Range Each member should be a int value betweem [-1,0x7fffffff]. |
| Default Value [-1,-1] |
| Remarks A page size is defined as: [TargetPageWidth, TargetPageHeight]. TargetPageWidth * TargetPageHeight < 100000000. If any of TargetPageWidth and TargetPageHeight is 0 or -1, the original width and height of the detected content will be used. |