在 Windows 7 上使用 WIA 扫描多个页面

men*_*ndy 6 c# wia scanning windows-7

我正在尝试从进纸器扫描几页,尽管当我调用 ShowTransfer 函数时扫描仪会自动扫描所有页面(不使用循环),但我只返回第一页。

我究竟做错了什么?

这是我的代码:

  WIA.Item item = device.Items[1] as WIA.Item;

            if (pages > 1)
            {
                // Set to feeder
                SetWIAProperty(device.Properties, 44, 1);
            }

            SetWIAProperty(device.Properties, WIA_DEVICE_PROPERTY_PAGES_ID, 1);

            AdjustScannerSettings(item, 150, 0, 0, 1250, 1700, 0, 0, 1);
            try
            {

                // scan image
                WIA.ICommonDialog wiaCommonDialog = new WIA.CommonDialog();
                WIA.ImageFile image = (WIA.ImageFile)wiaCommonDialog.ShowTransfer(item, wiaFormatBMP, false);

                // save to temp file
                string fileName = Path.GetTempFileName();
                File.Delete(fileName);
                image.SaveFile(fileName);
                image = null;
                // add file to output list
                images.Add(Image.FromFile(fileName));
            }
            catch (Exception exc)
            {
                throw exc;
            }
Run Code Online (Sandbox Code Playgroud)

小智 3

我认为这个链接正在做你想做的事

http://forums.codeguru.com/showthread.php?439027-Windows-Image-Acquisition-(WIA)-代码

基本上,您需要在保存每个页面后检查是否还有更多页面并继续循环

                hasMorePages = false; //assume there are no more pages
                if (documentHandlingSelect != null)
                    //may not exist on flatbed scanner but required for feeder
                {
                    //check for document feeder
                    if ((Convert.ToUInt32(documentHandlingSelect.get_Value()) & WIA_DPS_DOCUMENT_HANDLING_SELECT.FEEDER) != 0)
                    {
                        hasMorePages = ((Convert.ToUInt32(documentHandlingStatus.get_Value()) & WIA_DPS_DOCUMENT_HANDLING_STATUS.FEED_READY) != 0);
                    }
                }
Run Code Online (Sandbox Code Playgroud)

  • [找到它](https://ithoughthecamewithyou.com/post/scanning-from-the-adf-using-wia-in-c)。“经过多次实验,我发现了一个解决方案。我一直在设置设备属性,然后在请求扫描之前设置项目属性。切换顺序 - 项目然后设备 - 使一切正常。” (2认同)