Click here to Skip to main content
15,881,600 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.1M   132.1K   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

 
GeneralRe: GdipSaveImageToStream Pin
Custec15-Jun-05 5:13
Custec15-Jun-05 5:13 
GeneralGet a Scanner DLL and Fax DLL Pin
Hsmmsd4-Apr-05 22:11
Hsmmsd4-Apr-05 22:11 
GeneralUrgent! Support for ADF Pin
Murpheux Melony1-Apr-05 1:13
Murpheux Melony1-Apr-05 1:13 
QuestionRe: Urgent! Support for ADF Pin
Jwalant Natvarlal Soneji29-Jun-07 5:36
Jwalant Natvarlal Soneji29-Jun-07 5:36 
Questionhow disables the scanner user interface? Pin
matanyacode28-Mar-05 11:20
matanyacode28-Mar-05 11:20 
AnswerRe: how disables the scanner user interface? Pin
Echooff318-Jul-05 7:18
Echooff318-Jul-05 7:18 
GeneralUsing TwainLib.TwStatus Pin
Ramsey @ Edge28-Mar-05 4:31
Ramsey @ Edge28-Mar-05 4:31 
GeneralSetting/getting float from device Pin
ivaiva14-Mar-05 23:55
ivaiva14-Mar-05 23:55 
QuestionHow to TWAIN.Net in Asp.net Pin
jwalin khatri14-Mar-05 20:53
jwalin khatri14-Mar-05 20:53 
AnswerRe: How to TWAIN.Net in Asp.net Pin
terryrey14-Mar-05 22:33
terryrey14-Mar-05 22:33 
GeneralPaper Size Pin
terryrey10-Mar-05 20:22
terryrey10-Mar-05 20:22 
GeneralRe: Paper Size Pin
terryrey10-Mar-05 21:36
terryrey10-Mar-05 21:36 
GeneralResolution of saved image Pin
ETollenaar8-Mar-05 0:14
ETollenaar8-Mar-05 0:14 
GeneralSave to Stream Pin
rruben3-Mar-05 2:03
rruben3-Mar-05 2:03 
GeneralChanging Scanner Properties before Scanning Pin
appsoft2-Mar-05 2:15
appsoft2-Mar-05 2:15 
GeneralVB.net IntPtr, Image HELP! Pin
Tonkutsche.de24-Feb-05 1:21
Tonkutsche.de24-Feb-05 1:21 
AnswerRe: VB.net IntPtr, Image HELP! Pin
surferxyzgmail28-Aug-08 0:12
surferxyzgmail28-Aug-08 0:12 
Generalplease help me fast please!! Pin
sujith_murukan17-Feb-05 14:34
sujith_murukan17-Feb-05 14:34 
GeneralRe: please help me fast please!! Pin
Christian Graus17-Feb-05 15:10
protectorChristian Graus17-Feb-05 15:10 
GeneralRe: please help me fast please!! Pin
sujith_murukan20-Feb-05 14:51
sujith_murukan20-Feb-05 14:51 
Generalmissing scanner Pin
jctools27-Jan-05 15:15
professionaljctools27-Jan-05 15:15 
GeneralSave to file after scanning Pin
SAN Peter6-Jan-05 22:51
SAN Peter6-Jan-05 22:51 
GeneralRe: Save to file after scanning Pin
16-Jan-05 15:45
suss16-Jan-05 15:45 
GeneralRe: Save to file after scanning Pin
sheperd_011021-Dec-09 1:44
sheperd_011021-Dec-09 1:44 
GeneralRe: Save to file after scanning Pin
ArielR24-Jun-13 4:45
ArielR24-Jun-13 4:45 

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.