Scanner ActiveX Control

BufferResizeMaxWidth 

 

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.BufferResizeMaxWidth[=integer]


Parameter
integer
the value of max width of an image in pixel

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