我正在尝试使用具有自动进纸器的扫描仪扫描多个页面.我的代码目前非常简单:
WIA.CommonDialog dialog = new WIA.CommonDialog();
WIA.Device device = dialog.ShowSelectDevice(WIA.WiaDeviceType.ScannerDeviceType);
WIA.Items items = dialog.ShowSelectItems(device);
foreach (WIA.Item item in items)
{
while (true)
{
try
{
WIA.ImageFile image = (WIA.ImageFile)dialog.ShowTransfer(item);
if (image != null && image.FileData != null)
{
dynamic binaryData = image.FileData.get_BinaryData();
if (binaryData is byte[])
using (MemoryStream stream = new MemoryStream(binaryData))
using (Bitmap bitmap = (Bitmap)Bitmap.FromStream(stream))
{
bitmap.Save(@"C:\Temp\scan.jpg", ImageFormat.Jpeg);
}
}
}
catch (COMException)
{
break;
}
}
}
Run Code Online (Sandbox Code Playgroud)
我尝试查询WIA_DPS_DOCUMENT_HANDLING_STATUS属性以查看进纸器中是否有任何页面可用,但总是返回1,所以相反,我正在捕获COM异常,如果我得到了WIA_ERROR_PAPER_EMPTY,我知道文档进纸器是空的.
问题是这段代码只扫描第一页,当dialog.ShowTransfer再次调用该方法时,我得到了一个异常和E_FAILHResult,我无法再扫描任何页面.奇怪的是,当我在调试器中单步执行此代码时,一切正常并且所有页面都被扫描.
我尝试通过做Marshal.ReleaseComObject(image)和释放图像对象image = null,但这没有帮助.这个问题的建议也没有.有什么我做错了造成这些错误吗?
编辑:我无法找到一个好的解决方案.E_FAIL当进纸器准备好扫描下一页时,扫描仪继续投掷,这需要几秒钟(它不是一个非常快的扫描仪).所以,我添加了一个循环来继续尝试10秒,这是一个我不喜欢的解决方案,但它似乎工作.
编辑2:这似乎与打印机的WIA驱动程序有关.我尝试使用不同品牌的打印机,但根本没有这个问题.
我正在做同样的事情,并尝试使用您的代码和此示例中的代码:http ://www.codeproject.com/Tips/792316/WIA-Scanner-in-Csharp-Windows-Forms
我在 hp scanjet 5590 上测试了您的代码,即使我在调试器中单步执行代码,它也只能获取一张图像。第二次调用dialog.ShowTransfer时抛出ArgumentException,并显示消息“值不在预期范围内”。我设法通过重置“图像”和“对话框”对象并设置显式传输格式 ID 来使其工作。您的代码还将图像写入同一文件。如果应用于您的代码,这对我有用:
WIA.CommonDialog dialog = new WIA.CommonDialog();
WIA.Device device = dialog.ShowSelectDevice(WIA.WiaDeviceType.ScannerDeviceType);
WIA.Items items = dialog.ShowSelectItems(device);
foreach (WIA.Item item in items)
{
while (true)
{
WIA.ImageFile image = null;
try
{
dialog = new WIA.CommonDialog();
image = (WIA.ImageFile)dialog.ShowTransfer(item,"{B96B3CAB-0728-11D3-9D7B-0000F81EF32E}", false);
if (image != null && image.FileData != null)
{
dynamic binaryData = image.FileData.get_BinaryData();
if (binaryData is byte[])
using (MemoryStream stream = new MemoryStream(binaryData))
using (Bitmap bitmap = (Bitmap) Bitmap.FromStream(stream))
{
bitmap.Save(String.Format(@"C:\Temp\scan{0}.jpg", Path.GetRandomFileName()),
ImageFormat.Jpeg);
}
}
}
catch (COMException)
{
break;
}
finally
{
if (image != null)
Marshal.FinalReleaseComObject(image);
}
}
}
Run Code Online (Sandbox Code Playgroud)
该 CodeProject 示例在我的硬件上也失败了,但相同的修复有所帮助。如果上面的代码仍然不起作用,请尝试一下,将原来的 Scan 方法替换为:
public static List<Image> Scan(string scannerId)
{
List<Image> images = new List<Image>();
// select the correct scanner using the provided scannerId parameter
WIA.DeviceManager manager = new WIA.DeviceManager();
WIA.Device device = null;
foreach (WIA.DeviceInfo info in manager.DeviceInfos)
{
if (info.DeviceID == scannerId)
{
// connect to scanner
device = info.Connect();
break;
}
}
// device was not found
if (device == null)
{
// enumerate available devices
string availableDevices = "";
foreach (WIA.DeviceInfo info in manager.DeviceInfos)
{
availableDevices += info.DeviceID + "\n";
}
// show error with available devices
throw new Exception("The device with provided ID could not be found. Available Devices:\n" + availableDevices);
}
WIA.Item item = null;
WIA.CommonDialog dialog = new WIA.CommonDialog();
WIA.Items items = dialog.ShowSelectItems(device);
if (items == null)
return images;
item = items[1];
bool hasMorePages = true;
while (hasMorePages)
{
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);
try
{
Marshal.FinalReleaseComObject(image);
}
finally
{
image = null;
}
// add file to output list
images.Add(Image.FromFile(fileName));
}
finally
{
//determine if there are any more pages waiting
WIA.Property documentHandlingSelect = null;
WIA.Property documentHandlingStatus = null;
foreach (WIA.Property prop in device.Properties)
{
if (prop.PropertyID == WIA_PROPERTIES.WIA_DPS_DOCUMENT_HANDLING_SELECT)
documentHandlingSelect = prop;
if (prop.PropertyID == WIA_PROPERTIES.WIA_DPS_DOCUMENT_HANDLING_STATUS)
documentHandlingStatus = prop;
}
// assume there are no more pages
hasMorePages = false;
// may not exist on flatbed scanner but required for feeder
if (documentHandlingSelect != null)
{
// 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);
}
}
}
}
return images;
}
Run Code Online (Sandbox Code Playgroud)
还将 btn_scan_Click 方法替换为:
private void btn_scan_Click(object sender, EventArgs e)
{
try
{
//get list of devices available
List<string> devices = WIAScanner.GetDevices();
List<Image> images = null;
//check if device is not available
if (devices.Count == 0)
{
MessageBox.Show("You do not have any WIA devices.");
this.Close();
}
else
{
if (devices.Count == 1)
{
images = WIAScanner.Scan(devices[0]);
}
else
{
images = WIAScanner.Scan();
}
}
//get images from scanner
foreach (Image image in images)
{
var path = String.Format(@"C:\Temp\scan{0}_{1}.jpg", DateTime.Now.ToString("yyyy-MM-dd HHmmss"), Path.GetRandomFileName());
image.Save(path, ImageFormat.Jpeg);
}
}
catch (Exception exc)
{
MessageBox.Show(exc.Message);
}
}
Run Code Online (Sandbox Code Playgroud)