Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know that you can use WIA from .net ecosystem without (too) much hassle, but I've found using WIA this way, well, at least erratic. I've seen my code behave perfectly to not working at all to some WIA features not working and refusing to play at all, let alone nice.

You can read about it in my WIA 2.0 HP ScanJet 7650 specific problems question which didn't get a single comment, let alone answer in six months.

So, I'm willing to buy WIA .NET component that works, for a reasonable amount of money - reasonable being up to $300. I've been browsing aroung ComponentSorce and there are many $2000 brontosaurses that do TWAIN and eat small children if not treated nice, but not a single WIA .NET component.

Oh yeah, and a little rant - MSDN's documentation and examples on WIA are really really substandard.

UPDATE - To all who think that this problem can be solved with reading proof-of-concept and look-it-works articles with sample code on WIA - it cannot. To get from look-it-works to reliable scanning support for many devices is a lot of work. I've tested three different scanners on my computer using WIA from .net, and just when you think you've got some detail figured out, you plug in another scanner and see that you haven't figured out anything. That is why I'm willing to pay for this.

share|improve this question
Your question is drawing too little views, maybe if you change the title to something else? SOLID SCANNER component for example? Maybe people doesn't use WIA at all... – Daniel Mošmondor May 13 '11 at 12:47
Sorry that this issue with WIA 2.0 and ,net has been a frustrating one. Judging by the lack of response, there's probably no stand-out component of this sort. BTW, Googling around does uncover some WIA capable choices - but haven't found one at the $300 price point tho'. Good luck – rskar May 18 '11 at 12:50

3 Answers

You probably want to check if the device supports WPD, the replacement of WIA in Vista or later. If the device does not support WPD, then try access the device with WIA Automation Layer. It can't handle WIA device-specific problems for sure, but at least it is good for standardized behavior. If neither WPD nor WIA is supported, I am afraid you have to deal with the old TWAIN interface.

The WIA documentation in Windows Driver Kit is on par with the documentation in Windows SDK. Don't be surprised if a driver developer fails to follow the WIA driver guidelines. If you travel WIA scanner trees, make sure you are aware of the difference of tree layout for Windows XP, Vista and Windows 7.

There is a discussion about wrappers of these APIs for .Net applications at .NET Scanning API.

share|improve this answer

Have you seen this article? http://10rem.net/blog/2010/01/08/scanning-images-in-wpf-via-wia

The above project can be downloaded from: http://10rem.net/media/55896/petebrownwpfscannerdemo.zip

It's in C#, so it may be of help.

share|improve this answer

I would save the money and recommend reading an article like this one: http://www.codeproject.com/KB/cs/WebCamService.aspx

Follow the steps, and adapt the code to meet your requirements.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.