本文介绍了如何在vb.net中使用WIA设置Jpeg文件格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

ImageFile = CD.ShowAcquireImage(WIA.WiaDeviceType.ScannerDeviceType,WiaImageIntent.ColorIntent,WiaImageBias.MinimizeSize," {B96B3CAE-0728-11D3-9D7B-0000F81EF32E}",True,True) 


我使用上面的代码从扫描仪扫描。但文件格式(jpg -
" {B96B3CAE-0728-11D3-9D7B-0000F81EF32E}"
)和图像文件大小( WiaImageBias.MinimizeSize )无效?


扫描后 完成我得到了BMP文件格式,文件大小很大。


请帮助我。

解决方案

ImageFile = CD.ShowAcquireImage(WIA.WiaDeviceType.ScannerDeviceType, WiaImageIntent.ColorIntent, WiaImageBias.MinimizeSize, "{B96B3CAE-0728-11D3-9D7B-0000F81EF32E}", True, True) 

I have used above code to scan from scanner. But the file format(jpg - "{B96B3CAE-0728-11D3-9D7B-0000F81EF32E}") and Image file Size(WiaImageBias.MinimizeSize) is not working?

After Scan  complete I got BMP file format and File Size is huge.

Kindly Help Me.

解决方案


这篇关于如何在vb.net中使用WIA设置Jpeg文件格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 17:18