Scanner ActiveX Control

BufferResizeMode 

 

When ClearImageBuffer = false , it can scan a lot of images on memory. set BufferResizeMode= true, it will help you resize large image to small image. Let you can scan more image on memory. By default is true.
When BufferResizeMode= true, if  the width of scanned image larger than BufferResizeMaxWidth value , it will according BufferResizeScale value, then resize the image and stored on memory.

Scanner1.BufferResizeMode[=bool]


Parameter
bool
true - enable resize image and stored on memory.
false -disable resize image.

Remark
This property is Read/Write.

Example ( if the width of scanned image larger than 1200 pixel, it will resize 50% of original image and stored on memory)

   

Visual Basic Syntax
Scanner1.ClearImageBuffer=False
Scanner1.BufferResizeMode=true
Scanner1.BufferResizeMaxWidth=1200
Scanner1.BufferResizeScale=0.5
Scanner1.Scan