WIA 2.0 Duplex property

拟墨画扇 提交于 2019-12-05 11:51:13

I've read that one you transfer the first image the second image is available using the same reference so you just call the first line of code twice. It seems a bit strange but works with one of my duplex scanners.

e.g.

imgFile = (ImageFile)wiaCommonDialog.ShowTransfer(item, format.Guid.ToString("B")/* wiaFormatJPEG*/, false);
imgFile2 = (ImageFile)wiaCommonDialog.ShowTransfer(item, format.Guid.ToString("B")/* wiaFormatJPEG*/, false);

This may work for you. I'm also having trouble with duplex scanning but I managed to get this to work with one of my scanners.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!