我正在开发一个WPF应用程序,用扫描仪扫描不同的文档。文件的大小不一样,可以变化。
我的代码在没有扫描仪对话框的情况下工作,我希望用户不必预览图像然后扫描它以获得真实尺寸(导致两次扫描)。
问题是我尝试在扫描前将页面大小设置为自动
SetWIAProperty(item.Properties, "3097", 100);
但我得到了HRESULT:0x80210067 System.Runtime.InteropServices.COMException。 我已经google了这一点,并认为我的扫描仪不支持这个属性。
那么,有没有办法实现这个目标?我需要得到的扫描图像只是文档,而不是所有扫描仪区域(我现在正在观察)。 如果我不能告诉扫描仪只扫描文档,我还想到裁剪生成的图像只获取我需要的文档,但现在不知道如何执行此操作。
这是我的代码:
DeviceManager deviceManager = new DeviceManager();
Device scanner = null;
foreach (DeviceInfo deviceInfo in deviceManager.DeviceInfos)
{
if (deviceInfo.DeviceID == scannerId)
{
scanner = deviceInfo.Connect();
break;
}
}
if (scanner == null)
{
throw new Exception("Scanner not found");
}
Item item = scanner.Items[1] as Item;
int dpi = 300;
SetWIAProperty(item.Properties, "6146", 1); // 1 Color
SetWIAProperty(item.Properties, "6147", dpi); // dpis
SetWIAProperty(item.Properties, "6148", dpi); // dpis
// This line throws the exception
//SetWIAProperty(item.Properties, "3097", 100); // page size 0=A4, 1=letter, 2=custom, 100=auto
try
{
ICommonDialog wiaCommonDialog = new CommonDialog();
ImageFile scannedImage = (ImageFile)wiaCommonDialog.ShowTransfer(item, FormatID.wiaFormatPNG, false);
if (scannedImage != null)
{
ImageProcess imgProcess = new ImageProcess();
object convertFilter = "Convert";
string convertFilterID = imgProcess.FilterInfos.get_Item(ref convertFilter).FilterID;
imgProcess.Filters.Add(convertFilterID, 0);
SetWIAProperty(imgProcess.Filters[imgProcess.Filters.Count].Properties, "FormatID", FormatID.wiaFormatPNG);
scannedImage = imgProcess.Apply(scannedImage);
if (System.IO.File.Exists(@"D:\temp\scanwia3.png"))
System.IO.File.Delete(@"D:\temp\scanwia3.png");
scannedImage.SaveFile(@"D:\temp\scanwia3.png");
}
scannedImage = null;
}
finally
{
item = null;
scanner = null;
}
和SetWIAProperty功能:
private static void SetWIAProperty(IProperties properties, object propName, object propValue)
{
Property prop = properties.get_Item(ref propName);
prop.set_Value(ref propValue);
}
任何帮助都将不胜感激。
亲切的问候,
何。
答案 0 :(得分:0)
属性Page Size
属于设备,而不属于项目。
var WIA_IPS_PAGE_SIZE = "3097";
var WIA_PAGE_AUTO = 100;
SetWIAProperty(scanner.Properties, WIA_IPS_PAGE_SIZE, WIA_PAGE_AUTO);