A TWAIN lib for dotnet.
Go to file
2025-03-09 18:52:44 -04:00
csizes V4 add extimginfo (#37) 2023-04-09 17:52:23 -04:00
samples Add placeholder for KDS caps. 2025-03-09 12:36:15 -04:00
src Try to fix range value reader. 2025-03-09 18:52:44 -04:00
twain-doc Delete old files. 2023-04-08 19:46:54 -04:00
.gitattributes Initial commit to add default .gitIgnore and .gitAttribute files. 2014-04-02 18:57:46 -04:00
.gitignore Lib version bumps and change net7 to net8. 2024-07-12 08:19:55 -04:00
Build.cmd Added net7 targets and uses LibraryImport on them for pinvokes. 2023-04-09 21:16:30 -04:00
LICENSE.txt Testing a basic xfer loop. 2023-04-03 21:25:41 -04:00
NTwain.sln Try to put KDS values in own namespace and enum. 2025-03-09 08:55:45 -04:00
README.md Added old console sample to test diy message pump. 2023-04-13 22:52:04 -04:00
Scanner-Icon.png Add icon image 2017-05-05 15:25:12 -04:00

TWAIN dotnet library

NOTE: This is a rewrite of the original NTwain lib and is still in early stages. Use the V3 branch for the current version.

Info

This is a dotnet library created to make working with TWAIN devices easier in dotnet. It internally uses some parts of the twaincs code from the TWAIN Working Group.

V4 of this lib has these features:

  • Targets TWAIN version 2.5.
  • Runs under supported framework (4.6.2+) and netcore variants (6.0+).
  • Easier to use than the low-level C API with many dotnet niceties.
  • Attempt at reducing heap allocations compared to previous versions.

Compred to older versions

These are not implemented yet in this early version:

  • Image memory transfer (DAT_IMAGEMEMXFER).
  • Audio native transfer (probably never will).

As with previous versions, only Windows has been tested on and thus supported really. Other changes include

  • All TWAIN data types are now struct instead of class (and they come from twaincs for correctness. It may have been easier to implement them as classes when starting out this lib, but it's not really ideal anymore. The change also makes them match the twain.h names and the spec pdf.

  • All lower-level TWAIN APIs are public instead of hidden away.

Using the lib

Before using this lib, you are required to be reasonably familiar with the TWAIN spec and understand how it works in general. The TWAIN spec pdf can be downloaded from twain.org.

The main class to use is TwainAppSession. This is the highest abstraction level provided by this lib. A lower-level abstraction is the triplet calls (under NTwain.Triplets namespace). The lowest level is the pinvoke dsm calls (under NTwain.DSM namespace).

You use TwainAppSession by subscribing to its events and calling methods to do TWAIN things. There is a sample winform project (both 32 and 64 bit variants) on how it can be used. Note that an application process should only have one active (opened) TwainAppSession at any time.