I'm making an application that your typical CRUD scenario. I also need to scan a document and save that image to disc.

I don't really need complex image manipulation, just a simple "call scanner to scan, catch the scanned image" approach.

What's the easiest way to accomplish this on a Windows Form .NET 3.5 c# application?

Thanks.

link|improve this question
feedback

4 Answers

Windows has a newer api that is called Windows Image Acquisition.

http://msdn.microsoft.com/en-us/library/ms630368%28VS.85%29.aspx

http://10rem.net/blog/2010/01/08/scanning-images-in-wpf-via-wia

link|improve this answer
feedback

If your scanner supports TWAIN, it's the best way to go.


A .Net article on using TWAIN:

http://www.codeproject.com/KB/dotnet/twaindotnet.aspx

This spawned an open source project:

http://code.google.com/p/twaindotnet/


Twain.Net also looks useful:

http://twainnet.cvs.sourceforge.net/viewvc/twainnet/Twain.NET/

link|improve this answer
That link is from 2002, maybe there's an easier more managed way of using a scanner without COM interop? – delete Oct 30 '10 at 23:02
I doubt it. Perhaps WPF, or rather WIC has some way to do it, but it's not like TWAIN has changed much in 8 years, and you're going to have to handle some unmanaged code somewhere to interact with it... – codekaizen Oct 30 '10 at 23:05
Hello, I've been told that you can use Microsoft Office to do this. Any truth to that? – delete Oct 30 '10 at 23:07
It seems like you could, since Office has an API and also itself uses TWAIN to capture images. If it exposes this in the API, you can. However, this seems like the long way around... – codekaizen Oct 30 '10 at 23:13
Technology Without An Interesting Name, good luck :) such a pain but if your application is not complicated the sample project on codeproject is all you need. – A_Nablsi Oct 30 '10 at 23:18
feedback

Use Twaindotnet, it is simple to use and can be used with Winforms and WPF.

link|improve this answer
feedback

Check this StackOverflow question: C# Document Scanning

link|improve this answer
feedback

Your Answer

 
or
required, but never shown