Click here to Skip to main content
15,867,453 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

 
SuggestionRe: Range value of capability ICAP_GAMMA Pin
Spike0xFF14-Jul-11 12:05
Spike0xFF14-Jul-11 12:05 
GeneralHow to save all pages in 1 file [modified] Pin
LQUICK12-May-11 6:24
LQUICK12-May-11 6:24 
GeneralRe: How to save all pages in 1 file Pin
trpugh17-May-11 8:35
trpugh17-May-11 8:35 
GeneralCapability ICAP_GAMMA Pin
Willzith Pham11-May-11 23:45
Willzith Pham11-May-11 23:45 
General[TWAIN][CAPABILITES] Set float value for ICAP_GAMMA Pin
Willzith Pham11-May-11 16:58
Willzith Pham11-May-11 16:58 
GeneralHow obtain where image has been saved? Pin
mehdimax30-Apr-11 21:52
mehdimax30-Apr-11 21:52 
QuestionHow to take picture from Digital Camera in C# application using TWAIN Pin
Member 77483387-Apr-11 20:08
Member 77483387-Apr-11 20:08 
QuestionFailed to save 600dpi color to BMP Pin
worship66829-Mar-11 7:45
worship66829-Mar-11 7:45 
GeneralHandling with the TW_ENTRYPOINT Pin
Tonkpils24-Mar-11 23:22
Tonkpils24-Mar-11 23:22 
GeneralRe: Handling with the TW_ENTRYPOINT Pin
Easy_Rider999915-Jun-11 22:56
Easy_Rider999915-Jun-11 22:56 
GeneralRe: Handling with the TW_ENTRYPOINT Pin
Easy_Rider999915-Jun-11 22:58
Easy_Rider999915-Jun-11 22:58 
GeneralRe: Handling with the TW_ENTRYPOINT Pin
Tonkpils16-Jun-11 11:27
Tonkpils16-Jun-11 11:27 
GeneralRe: Handling with the TW_ENTRYPOINT Pin
Easy_Rider999918-Jun-11 4:40
Easy_Rider999918-Jun-11 4:40 
QuestionHow to scan and show on picturebox vc# ?? Pin
abdojawad24-Mar-11 13:21
abdojawad24-Mar-11 13:21 
AnswerRe: How to scan and show on picturebox vc# ?? Pin
Easy_Rider999915-Jun-11 22:54
Easy_Rider999915-Jun-11 22:54 
GeneralScanner F2-6130 does not respond....:zzz: Pin
kosxxx9s16-Mar-11 10:07
kosxxx9s16-Mar-11 10:07 
AnswerRe: Scanner F2-6130 does not respond....:zzz: Pin
Member 14968626-Jun-11 22:32
Member 14968626-Jun-11 22:32 
Generalscanner window closes quickly Pin
Member 473569127-Feb-11 1:42
Member 473569127-Feb-11 1:42 
QuestionPDF format for image Pin
Member 770345524-Feb-11 18:29
Member 770345524-Feb-11 18:29 
AnswerRe: PDF format for image Pin
Gagan_198428-Feb-11 6:33
Gagan_198428-Feb-11 6:33 
GeneralRe: PDF format for image Pin
Mike Chernoff18-Mar-11 4:35
Mike Chernoff18-Mar-11 4:35 
QuestionRe: PDF format for image Pin
VBdotnetSara3-Aug-11 19:50
VBdotnetSara3-Aug-11 19:50 
QuestionHow to get Enum-Capability like ICAP_XRESOLUTION Pin
Jörg Boekhoff16-Feb-11 23:26
Jörg Boekhoff16-Feb-11 23:26 
QuestionHow to make it scan multiple files with name? Pin
zimfer16-Feb-11 22:49
zimfer16-Feb-11 22:49 
GeneralGet Capabilities Pin
Chris Shaw14-Feb-11 0:25
Chris Shaw14-Feb-11 0:25 

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.