Xerox ドキュメント 752 を使用して A3 ページを両面でスキャンしようとしています。ドキュメント フィーダーを使用してうまくスキャンできますが、側面のみです。他の画像にアクセスするにはどうすればよいですか??
これが私の基本的なコードです:
dynamic imageFile1;
dynamic imageFile2;
dynamic wiaDialog = AutomationFactory.CreateObject("WIA.CommonDialog");
dynamic Scanner = wiaDialog.ShowSelectDevice(1, false, false);
dynamic manager = AutomationFactory.CreateObject("WIA.DeviceManager");
dynamic deviceInfo = null;
foreach (dynamic info in manager.DeviceInfos)
{
if (info.DeviceID == Scanner.DeviceID)
{
deviceInfo = info;
}
}
dynamic device = deviceInfo.Connect();
dynamic item = device.Items[1];
int dpi = 150;
item.Properties["6146"].Value = 2;
item.Properties["6147"].Value = dpi;
item.Properties["6148"].Value = dpi;
item.Properties["6151"].Value = (int)(dpi * _width);
item.Properties["6152"].Value = (int)(dpi * _height);
int deviceHandling = 5;//code for both feed (1) + duplex (4)
device.Properties["3088"].Value = deviceHandling;
int handlingStatus = (int)device.Properties["3087"].Value;
if (handlingStatus == deviceHandling)
{
//scan the file
imageFile1 = wiaDialog.ShowTransfer(item, "{B96B3CAE-0728-11D3-9D7B-0000F81EF32E}", true);
//get the second image
imageFile2 = wiaDialog.ShowTransfer(item, "{B96B3CAE-0728-11D3-9D7B-0000F81EF32E}", true);
}
imageFile1.SaveFile("C:\\testfile1.jpg");
imageFile2.SaveFile("C:\\testfile1_2.jpg");
二重画像がある場合は、ShowTransfer() を再度呼び出してアクセスします。私のスキャナーでは、これは単純に新しいドキュメントをスキャンしようとし、フィーダーが空になったためエラーを返します。フィード (1) とデュプレックス (4) の両方がオンになっていることを示す 5 が handlingStatus から返されました。または、これは完全に間違っていますか?
どんな助けでも大歓迎です。