A TWAIN lib for dotnet.
Go to file
2014-04-16 06:53:05 -04:00
NTwain Internal rename and loop check. 2014-04-16 06:53:05 -04:00
Spec Found some interesting stuff for kodak. 2014-04-15 20:05:44 -04:00
Tests Fixed message loop thread may not start until too late (#6). 2014-04-15 18:57:03 -04:00
.gitattributes Initial commit to add default .gitIgnore and .gitAttribute files. 2014-04-02 18:57:46 -04:00
.gitignore Fixed release build. 2014-04-03 18:54:16 -04:00
LICENSE.txt Initial move from old twain-in-dotnet. 2014-04-02 19:01:21 -04:00
NTwain.sln Updated more memory mgmt for some types. 2014-04-12 08:25:08 -04:00
README.markdown More update for internal loop handling. 2014-04-14 19:51:36 -04:00

TWAIN Application-Side Library

Info

This is a dotnet library created to work with TWAIN interface. This project has these features:

  • Targets latest TWAIN version (2.3 at the moment)
  • Supports all the TWAIN functions in the spec
  • Hosts internal message loop so no need to hook into application UI thread

The solution contains tester projects in winform, wpf, and even (gasp!) console. A nuget package is also available here

Using the lib

To properly use this lib you will need to be reasonably familiar with the TWAIN spec and how it works in general. Except for certain "important" calls that drive the TWAIN state change, most triplet operations are only availble as-is so you will need to know when and how to use them. There are no high-level, single-line scan-a-page-for-me-now functions.

At the moment this lib does not provide ways to parse transferred image data and require consumers to do the conversion. The winform project contains one such example for handling DIB image in native transfer.

The main class to use is TwainSession. New it up, hook into the events, and start calling all the TWAIN functions provided through it.