佳能 TWAIN 扫描仪卡在“预热”几分钟
Posted
技术标签:
【中文标题】佳能 TWAIN 扫描仪卡在“预热”几分钟【英文标题】:Canon TWAIN scanner stuck on 'Warming up' for minutes 【发布时间】:2018-09-09 14:26:57 【问题描述】:我正在尝试使用 NTwain 库从 C# 与兼容 TWAIN 的多功能打印机和扫描仪、Canon Pixma MG5750 进行交互。我正在编写一个程序来将图像扫描到Image
对象中。
扫描仪在扫描图像之前必须预热;这样做时它会显示以下弹出窗口:
此过程完成后,它将开始扫描文档。
虽然该程序确实有效,但问题是这个预热过程有时会无缘无故地花费很长时间,最多几分钟。使用佳能自己的应用程序 IJ Scan Utility 时不会出现此问题,该应用程序使用 TWAIN 并显示相同的对话框,但仅显示几秒钟。
我可以使用 TWAIN 功能来提高此预热过程的速度吗?我试过更改ICapXResolution
和ICapYResolution
,但这些只会提高热身后实际扫描的速度,不会影响热身本身。
我的程序如下所示。请注意,它是一个控制台应用程序,因此使用 ThreadPool
。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using NTwain;
using NTwain.Data;
using System.Drawing;
using System.Threading;
namespace TwainExample
class Program
[STAThread]
static void Main(string[] args)
ThreadPool.QueueUserWorkItem(o => TwainWork());
Console.ReadLine();
static void TwainWork()
var identity = TWIdentity.CreateFromAssembly(DataGroups.Image, Assembly.GetEntryAssembly());
var twain = new TwainSession(identity);
twain.Open();
twain.DataTransferred += (s, e) =>
var stream = e.GetNativeImageStream();
var image = Image.FromStream(stream);
// Do things with the image...
;
var source = twain.First();
Console.WriteLine($"Scanning from source.Name...");
var openCode = source.Open();
Console.WriteLine($"Open: openCode");
source.Enable(SourceEnableMode.NoUI, false, IntPtr.Zero);
它输出:
Scanning from Canon MG5700 series Network...
Open: Success
【问题讨论】:
鉴于 Main() 具有 [STAThread] 属性,似乎对代码中的问题有所了解。那么当你不使用线程池线程时会发生什么? 我更新的示例对您有用吗? @FredKleuver 很抱歉没有回复,我已经离开了。我实际上无法编译它;那里似乎有一些 C# 错误。我回来后会尝试调整它,但我目前无法访问我的扫描仪来实际测试它。 啊,是的,抱歉,由于我不记得的原因,我在答案中而不是在我的解决方案中的另一个文件中编辑它。 SO 不是一个很好的类型检查器 :) 我更新了我现在应该编译的答案。 【参考方案1】:不久前,我为扫描仪构建了一个 Web 服务(也使用 TWAIN),它托管在使用 OWIN 的控制台应用程序中。我想巧合的是,我从来没有想过采取与您相同的方法,因为我只是将其构建为常规的 Web 应用程序,当我注意到类似的问题时,我发现了一些将扫描过程本身锁定到单个线程的示例。
基本上,我认为您不需要 [STAThread]
属性或 ThreadPool 。好吧,如果您希望控制台应用程序保持响应,您可以保留 ThreadPool。
如果我没记错的话,您还需要设备 ID 来获取正确的数据源。我已经修改了我的一些代码(涉及设置扫描配置文件的更多部分,现在非常天真地内联),试试这个(有或没有 ThreadPool):
class Program
static void Main(string[] args)
var scanner = new TwainScanner();
scanner.Scan("your device id");
Console.ReadLine();
public sealed class CustomTwainSession : TwainSession
private Exception _error;
private bool _cancel;
private ReturnCode _returnCode;
private DataSource _dataSource;
private Bitmap _image;
public Exception Error => _error;
public bool IsSuccess => _error == null && _returnCode == ReturnCode.Success;
public Bitmap Bitmap => _image;
static CustomTwainSession()
PlatformInfo.Current.PreferNewDSM = false;
public CustomTwainSession(): base(TwainScanner.TwainAppId)
_cancel = false;
TransferReady += OnTransferReady;
DataTransferred += OnDataTransferred;
TransferError += OnTransferError;
public void Start(string deviceId)
try
_returnCode = Open();
if (_returnCode == ReturnCode.Success)
_dataSource = this.FirstOrDefault(x => x.Name == deviceId);
if (_dataSource != null)
_returnCode = _dataSource.Open();
if (_returnCode == ReturnCode.Success)
_returnCode = _dataSource.Enable(SourceEnableMode.NoUI, false, IntPtr.Zero);
else
throw new Exception($"Device deviceId not found.");
catch (Exception ex)
_error = ex;
if (_dataSource != null && IsSourceOpen)
_dataSource.Close();
if (IsDsmOpen)
Close();
private void OnTransferReady(object sender, TransferReadyEventArgs e)
_dataSource.Capabilities.CapFeederEnabled.SetValue(BoolType.False);
_dataSource.Capabilities.CapDuplexEnabled.SetValue(BoolType.False);
_dataSource.Capabilities.ICapPixelType.SetValue(PixelType.RGB);
_dataSource.Capabilities.ICapUnits.SetValue(Unit.Inches);
TWImageLayout imageLayout;
_dataSource.DGImage.ImageLayout.Get(out imageLayout);
imageLayout.Frame = new TWFrame
Left = 0,
Right = 210 * 0.393701f,
Top = 0,
Bottom = 297 * 0.393701f
;
_dataSource.DGImage.ImageLayout.Set(imageLayout);
_dataSource.Capabilities.ICapXResolution.SetValue(150);
_dataSource.Capabilities.ICapYResolution.SetValue(150);
if (_cancel)
e.CancelAll = true;
private void OnDataTransferred(object sender, DataTransferredEventArgs e)
using (var output = Image.FromStream(e.GetNativeImageStream()))
_image = new Bitmap(output);
private void OnTransferError(object sender, TransferErrorEventArgs e)
_error = e.Exception;
_cancel = true;
public void Dispose()
_image.Dispose();
public sealed class TwainScanner
public static TWIdentity TwainAppId get;
private static CustomTwainSession Session get; set;
static volatile object _locker = new object();
static TwainScanner()
TwainAppId = TWIdentity.CreateFromAssembly(DataGroups.Image | DataGroups.Control, Assembly.GetEntryAssembly());
public Bitmap Scan(string deviceId)
bool lockWasTaken = false;
try
if (Monitor.TryEnter(_locker))
lockWasTaken = true;
if (Session != null)
Session.Dispose();
Session = null;
Session = new CustomTwainSession();
Session.Start(deviceId);
return Session.Bitmap;
else
return null;
finally
if (lockWasTaken)
Monitor.Exit(_locker);
我可能已经躲过了,这是几年前的事了,当时我对线程的了解并不多。我可能会采取不同的做法,但现在我无法使用实际的扫描仪对其进行测试。这只是我在扫描逻辑周围的锁定机制,我知道它解决了无响应问题。
其他人可以随意对这种特殊方法进行攻击;我知道这并不理想:)
【讨论】:
不幸的是,这不起作用;谢谢你的回答。 我在查看旧代码时才意识到,我认为您遗漏了一些东西。一方面,您需要设备 ID。我已经更新了我的答案。 目前由于 C++ 异常而崩溃:The program '[3332] TwainExample.exe' has exited with code -529697949 (0xe06d7363) 'Microsoft C++ Exception'.
。它从不调用OnTransferReady
、OnDataTransferred
或OnTransferError
。我开始认为这部分是由于佳能的驱动程序太糟糕了!不过,我感谢您对这个问题的坚持。
啊,是的!我记得与爱普生扫描仪非常相似的斗争。我花了一段时间才弄清楚在哪里可以找到设备 ID,然后结合使用哪个设置。我学到的一件事是几乎没有人知道这些东西(几乎没有人需要),所以我当然坚持了!赏金很好,但是看到像这样令人讨厌的问题得到解决更好:)
这个想法是制作一个 Web 界面来完全自动化某些管理任务,例如纳税。扫描仪将通过该界面进行控制,文本识别+规则引擎将自动处理扫描的文档。扫描部分和规则引擎运行良好,文本识别最终变得过于不可靠且耗时而无法开始工作,因此我将项目放在冰箱里。它处于粗略状态,我可能会在某个时候尝试挽救有用的部分并将其开源:)【参考方案2】:
这比我想象的要简单得多!
我的佳能多功能一体机向 Windows 公开了两个设备。在我的机器上,它们是:
佳能MG5700系列网络 WIA-MG5700系列_C6CA27000000使用 WIA 设备,而不是佳能设备。 WIA 设备几乎立即升温!
Fred Kleuver 发布的代码非常适合扫描,只要您使用 WIA 设备即可;使用佳能时似乎会崩溃。
【讨论】:
【参考方案3】:我的一些建议
检查 TwainSession 是否实现了 IDisposable,如果有,用“using”括起来。
处理程序被添加到 twain.DataTransferred 但未被删除,将 lambda 表达式提取到它自己的方法中,然后添加一行以删除处理程序。
【讨论】:
以上是关于佳能 TWAIN 扫描仪卡在“预热”几分钟的主要内容,如果未能解决你的问题,请参考以下文章