Click here to Skip to main content
15,887,083 members
Articles / Programming Languages / C#
Article

.NET TWAIN image scanner

Rate me:
Please Sign up or sign in to vote.
4.91/5 (227 votes)
12 May 2002Public Domain2 min read 7.2M   132.2K   421   996
Using TWAIN API to scan images

Sample Screenshot

Abstract

In Windows imaging applications, the most used API for scanning is TWAIN www.twain.org. Unfortunately, the new .NET Framework has no built-in support for TWAIN. So we have to work with the interop methods of .NET to access this API. This article doesn't explain this interop techniques, and good knowledge of the TWAIN 1.9 specifications is assumed! The sample code included doesn't present a finished library, only some essential steps for a minimal TWAIN adaption to .NET applications.

Details

First step was to port the most important parts of TWAIN.H, these are found in TwainDefs.cs. The real logic for calling TWAIN is coded in the class Twain, in file TwainLib.cs.. As the TWAIN API is exposed by the Windows DLL, twain_32.dll, we have to use the .NET DllImport mechanism for interop with legacy code. This DLL has the central DSM_Entry(), ordinal #1 function exported as the entry point to TWAIN. This call has numerous parameters, and the last one is of variable type! It was found to be best if we declare multiple variants of the call like:

C#
[DllImport("twain_32.dll", EntryPoint="#1")]
private static extern TwRC DSMparent(
    [In, Out] TwIdentity origin,
    IntPtr zeroptr,
    TwDG dg, TwDAT dat, TwMSG msg,
    ref IntPtr refptr );

The Twain class has a simple 5-step interface:

C#
class Twain
{
    Init();
    Select();
    Acquire();
    PassMessage();
    TransferPictures();
}

For some sort of 'callbacks', TWAIN uses special Windows messages, and these must be caught from the application-message-loop. In .NET, the only way found was IMessageFilter.PreFilterMessage(), and this filter has to be activated with a call like Application.AddMessageFilter(). Within the filter method, we have to forward each message to Twain.PassMessage(), and we get a hint (enum TwainCommand) back for how we have to react.

Sample App

The sample is a Windows Forms MDI-style application. It has the two TWAIN-related menu items Select Source... and Acquire... Once an image is scanned in, we can save it to a file in any of the GDI+ supported file formats (BMP, GIF, TIFF, JPEG...)

Limitations

All code was only tested on Windows 2000SP2, with an Epson Perfection USB scanner and an Olympus digital photo camera. The scanned picture is (by TWAIN spec) a Windows DIB, and the sample code has VERY little checking against error return codes and bitmap formats. Unfortunately, no direct method is available in .NET to convert a DIB to the managed Bitmap class... Some known problems may show up with color palettes and menus.

Note, TWAIN has it's root in 16-Bit Windows! For a more modern API supported on Windows ME/XP, have a look at Windows Image Acquisition (WIA).

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication


Written By
Web Developer
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
AnswerRe: Configuring scan area Pin
cmchuan29-Oct-06 22:42
cmchuan29-Oct-06 22:42 
Generalmultiple interface with multiple classes Pin
joseph palatti13-Aug-06 21:43
joseph palatti13-Aug-06 21:43 
GeneralHelp, please. it doesn't work in the child window, I mean i add this to a child window, and it nothing happen. Pin
zhuangliang.zheng6-Aug-06 21:38
zhuangliang.zheng6-Aug-06 21:38 
GeneralRe: Help, please. it doesn't work in the child window, I mean i add this to a child window, and it nothing happen. Pin
izzetfatih@yahoo.com23-Nov-06 4:19
izzetfatih@yahoo.com23-Nov-06 4:19 
GeneralNot Working on VS 2005,,, Pin
Ziad Khoury1-Aug-06 7:30
Ziad Khoury1-Aug-06 7:30 
GeneralRe: Not Working on VS 2005,,, Pin
Ziad Khoury1-Aug-06 7:38
Ziad Khoury1-Aug-06 7:38 
QuestionSelect Source command and Nothing happens Pin
huseyin26-Jul-06 10:23
huseyin26-Jul-06 10:23 
QuestionUnable to do multipage scanning Pin
asp-12321-Jul-06 5:49
asp-12321-Jul-06 5:49 
AnswerRe: Unable to do multipage scanning Pin
trimba20-Aug-06 21:07
trimba20-Aug-06 21:07 
GeneralRe: Unable to do multipage scanning Pin
Emanuele Zambrano20-Aug-06 23:13
Emanuele Zambrano20-Aug-06 23:13 
GeneralRe: Unable to do multipage scanning Pin
alanmac13-Feb-07 14:22
alanmac13-Feb-07 14:22 
QuestionRe: Unable to do multipage scanning Pin
Jwalant Natvarlal Soneji29-Jun-07 1:45
Jwalant Natvarlal Soneji29-Jun-07 1:45 
AnswerRe: Unable to do multipage scanning Pin
Irv Adams11-Aug-09 9:57
Irv Adams11-Aug-09 9:57 
AnswerRe: Unable to do multipage scanning Pin
ymamalis2-Dec-09 3:35
ymamalis2-Dec-09 3:35 
GeneralCorrection for overflow checking on Pin
tobias00421-Jul-06 4:17
tobias00421-Jul-06 4:17 
QuestionHow Custominze Scan Area?? Pin
muhsyed010-Jul-06 1:21
muhsyed010-Jul-06 1:21 
AnswerRe: How Custominze Scan Area?? Pin
gabegabe13-Jul-06 20:27
gabegabe13-Jul-06 20:27 
AnswerRe: How Custominze Scan Area?? Pin
muhsyed019-Jul-06 4:28
muhsyed019-Jul-06 4:28 
GeneralRe: How Custominze Scan Area?? Pin
gabegabe14-Aug-06 20:27
gabegabe14-Aug-06 20:27 
GeneralTWAIN on Win2k Pin
allenmpcx5-Jul-06 9:56
allenmpcx5-Jul-06 9:56 
QuestionHow to set the Page Size in Scanner Pin
Sugesh G Pillai3-Jul-06 22:06
Sugesh G Pillai3-Jul-06 22:06 
AnswerRe: How to set the Page Size in Scanner Pin
cmchuan18-Sep-06 16:37
cmchuan18-Sep-06 16:37 
GeneralLoaderLock exception Pin
doug.spammenot23-Jun-06 5:08
doug.spammenot23-Jun-06 5:08 
QuestionHelp! Not able to ROTATE image Pin
Syed Adil Umair9-May-06 9:57
Syed Adil Umair9-May-06 9:57 
AnswerRe: Help! Not able to ROTATE image Pin
Emanuele Zambrano20-Aug-06 23:21
Emanuele Zambrano20-Aug-06 23:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.