Wia 2.0双向扫描引发异常“ System.outofmemoryException” C#

时间:2018-11-27 20:17:21

标签: c# exception duplex wia image-scanner

我在C#上使用WIA。当我将属性“页面”设置为1并将“文档处理选择”设置为5(以启用AFD和双面扫描)时,方法“ wiaCommonDialog.ShowTransfer”出现异常。

例外是“ System.OutOfMemoryExcepion”。

您能帮我解决吗?我使用正确的值吗?

try
{
     SetWIAProperty(device.Properties, "3096", 1);//pages to 1
     SetWIAProperty(device.Properties,"3088",5);//Handling select to 5
     if (init == false)
     {
          init = true;
     }
     wiaCommonDialog = new WIA.CommonDialog();
     while (true)
     {
          object imgFile = (ImageFile)wiaCommonDialog.ShowTransfer(item,WIA.FormatID.wiaFormatJPEG,false);//Here the exception is shown
          object imgFile2=(ImageFile)wiaCommonDialog.ShowTransfer(item, WIA.FormatID.wiaFormatJPEG, false);
          if (imgFile != null)
          {
               imagenes.Add((ImageFile)imgFile);
               leyo = true;
          }
          if (imgFile2 != null)
          {
               imagenes.Add((ImageFile)imgFile2);
               leyo = true;
          }
     }
}

0 个答案:

没有答案