wisam ali

wisam ali

  • 1.4k
  • 231
  • 9.1k

using WIA to image scanning

Jan 14 2017 3:29 PM
I had used these code to scan image in my application
 
WIA.CommonDialog dialog = new WIA.CommonDialog();
ImageFile scannedImage = null;
scannedImage = dialog.ShowAcquireImage(
WiaDeviceType.ScannerDeviceType,
WiaImageIntent.UnspecifiedIntent,
WiaImageBias.MinimizeSize,
FormatID.wiaFormatPNG,
true, true, false);
 
but the scanned image is at least (6 MB) in size how can I reduce the size of image without change the scanner settings ??? 
 

Answers (1)