我想在Twain扫描仪用户界面中设置DPI范围。看看下面的截图。 DPI下降从50开始到600.如何将此限制从400到600。
我尝试了以下代码,但它只设置了DPI,如果用户从用户界面更改,我的更改就会消失。
TwFix32 f32 = new TwFix32();
f32.FromFloat(400);//value of DPI
TwCapability capX = new TwCapability(TwCap.XResolution, f32.Whole);
rc = dScap(appid, srcds, TwDG.Control, TwDAT.Capability, TwMSG.Set, capX);
TwCapability capY= new TwCapability(TwCap.YResolution, f32T.Whole);
rc = dScap(appid, srcds, TwDG.Control, TwDAT.Capability, TwMSG.Set, capY);
答案 0 :(得分:1)
每个TWAIN源都实现自己的用户界面。 TWAIN规范没有提供更改此用户界面的方法;你只能显示它。
您可以做的最好的事情是编写自己的用户界面并显示 ,而不是要求TWAIN显示其用户界面。然后,您可以询问设备以确定它支持的分辨率,并过滤掉任何不符合您需求的选项。您可以在图像采集之前立即以编程方式设置DPI(正如您已经在做的那样)。
答案 1 :(得分:0)
更改图像分辨率
this._twain32.Capabilities.XResolution.Set((float)_item.Tag);
this._twain32.Capabilities.YResolution.Set((float)_item.Tag);
要选择平板式扫描仪,
if (this._twain32.Capabilities.Duplex.IsSupported(TwQC.GetCurrent) && this._twain32.Capabilities.Duplex.GetCurrent() != TwDX.None)
{
if (this._twain32.Capabilities.FeederEnabled.IsSupported(TwQC.Set))
{
this._twain32.Capabilities.FeederEnabled.Set(false);
if (this._twain32.Capabilities.DuplexEnabled.IsSupported(TwQC.Set))
{
this._twain32.Capabilities.DuplexEnabled.Set(false);
}
this._twain32.Capabilities.XferCount.Set(1);
}
}
要选择ADF型扫描仪,
if (this._twain32.Capabilities.Duplex.IsSupported(TwQC.GetCurrent) && this._twain32.Capabilities.Duplex.GetCurrent() != TwDX.None)
{
if (this._twain32.Capabilities.FeederEnabled.IsSupported(TwQC.Set))
{
this._twain32.Capabilities.FeederEnabled.Set(true);
if (this._twain32.Capabilities.DuplexEnabled.IsSupported(TwQC.Set))
{
this._twain32.Capabilities.DuplexEnabled.Set(true);
}
this._twain32.Capabilities.XferCount.Set(-1);
}
}
以上代码使用Saraff.Twain(free)dll作为参考。
我知道它的旧问题,但这将帮助TWAIN的新手。