Hi i am trying to scan something in the Scanner and put it in an Image object (C#) and then pick that image and generate a PDF (to that i am using iTextSharp). So i am trying to use WIA (Windows Image Acquisition) but for what i know this only works with Devices connected in USB. (but if it's possible i prefer something that works with Devices in USB and in the Network)

Is there any better libraries or ways to do this type of things? (I tried first to work with Twain but seems to be complicated to find free libraries.)

I am working in WPF(C#) and so i need to understand how the WIA works or anything better to do this.

Thanks in advance!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

WIA doesn't care how the device is connected, that's an implementation detail of the WIA provider. You get that from the device manufacturer. Twain is grossly obsolete. I don't see a real question here, check this answer for the way to get started with WIA in a C# project.

link|improve this answer
And one last question... Can this library be used in any operating System of the Microsoft? I mean i have developing this app in Win7, but it will work in XP?? – Miguel Apr 24 '11 at 17:22
Versioning info is available here: msdn.microsoft.com/en-us/library/ms630368%28VS.85%29.aspx – Hans Passant Apr 24 '11 at 18:02
But there isn't any documentation or examples in c#? – Miguel Apr 24 '11 at 22:39
I gave you a link to C# code. The MSDN sample code is in VBScript. – Hans Passant Apr 24 '11 at 22:46
feedback

Your Answer

 
or
required, but never shown

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