Scanner ActiveX Control

BufferResizeScale 

 

When ClearImageBuffer = false and 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.  
 If the resolution of scanned image is 3280x5000 . BufferResizeScale is 0.5 , the resize image will 1640x2500 and stored on memory.

Scanner1.BufferResizeScale[=double]


Parameter
double
the value scale factor. 1.0  = 100% of original image. 0.5 = resize 50% of original image. 0.1 = resize 90% of original 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