Click here to Skip to main content
15,860,943 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   132K   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: Fix for windows 8.0 Pin
smile869118-Nov-15 6:14
smile869118-Nov-15 6:14 
GeneralRe: Fix for windows 8.0 Pin
Member 321715015-Mar-16 11:04
Member 321715015-Mar-16 11:04 
QuestionTwain Driver Interface Dialog Pin
danajp_595-May-14 11:07
danajp_595-May-14 11:07 
AnswerRe: Twain Driver Interface Dialog Pin
Ravishankar chinnur8-May-14 0:06
Ravishankar chinnur8-May-14 0:06 
GeneralRe: Twain Driver Interface Dialog Pin
Imanol Pinto Lopez28-May-14 2:58
Imanol Pinto Lopez28-May-14 2:58 
GeneralRe: Twain Driver Interface Dialog Pin
Imanol Pinto Lopez28-May-14 23:18
Imanol Pinto Lopez28-May-14 23:18 
GeneralRe: Twain Driver Interface Dialog Pin
K.B.Rajesh24-Feb-15 21:31
K.B.Rajesh24-Feb-15 21:31 
GeneralRe: Twain Driver Interface Dialog Pin
K.B.Rajesh24-Feb-15 21:29
K.B.Rajesh24-Feb-15 21:29 
Hello Friend,

Please help, How to customize Twain scanner app using .net? I'm using .net Twain app, Please refer following link .NET TWAIN image scanner[^]

My Question's are,

1) How to pass parameter value, when scanning the Images?

Ex: Parameter value such as Resolution, Height, Width, Color etc..

2) How to perform automatic scanning of image when placing an ID card in the ID scanner device?

3) How to perform Scanning operation for the Front and Back side of ID card?

4) How to perform Scanning of UV( Ultraviolet) and IR(Infrared) type ID Cards?

5) After scanning the images how to edit feature's like Calibrate, Resolution, Height, Width, Color, Image Brightness, Image Contrast, Invert Images? If so by which method and parameters can be applied?

6) How to Reset ID Scanner device?

7) How to Refresh ID Scanner device?

Please help me with relevant functional document or Twain sample application using C# .net

Please reply as soon as possible.

Thanks
Rajesh.
QuestionAbout disabling Scan Property form Pin
Member 107179417-Apr-14 2:22
Member 107179417-Apr-14 2:22 
AnswerRe: About disabling Scan Property form Pin
danajp_595-May-14 11:23
danajp_595-May-14 11:23 
QuestionGreat Pin
magicyangjay18-Mar-14 21:50
magicyangjay18-Mar-14 21:50 
QuestionGet supported capabilities Pin
M.Azadi9-Mar-14 22:15
M.Azadi9-Mar-14 22:15 
QuestionWindows 8 errors with TwainLib.Twain.DSMident Pin
pserrao5-Mar-14 3:57
pserrao5-Mar-14 3:57 
AnswerRe: Windows 8 errors with TwainLib.Twain.DSMident Pin
Ravishankar chinnur5-Mar-14 18:12
Ravishankar chinnur5-Mar-14 18:12 
GeneralRe: Windows 8 errors with TwainLib.Twain.DSMident Pin
pserrao6-Mar-14 9:37
pserrao6-Mar-14 9:37 
GeneralRe: Windows 8 errors with TwainLib.Twain.DSMident Pin
Ravishankar chinnur6-Mar-14 18:13
Ravishankar chinnur6-Mar-14 18:13 
GeneralRe: Windows 8 errors with TwainLib.Twain.DSMident Pin
smile869115-Dec-14 5:54
smile869115-Dec-14 5:54 
Questionscanning one after another is not posiible Pin
Ravishankar chinnur5-Mar-14 2:08
Ravishankar chinnur5-Mar-14 2:08 
AnswerRe: scanning one after another is not posiible Pin
malcolmxu21-Mar-14 5:54
malcolmxu21-Mar-14 5:54 
AnswerRe: scanning one after another is not posiible Pin
Antriksh Patel27-Jul-14 18:12
Antriksh Patel27-Jul-14 18:12 
BugInsufficient Memory Pin
keencoder20-Jan-14 22:42
keencoder20-Jan-14 22:42 
GeneralRe: Insufficient Memory Pin
Member 1035479622-Sep-14 22:13
Member 1035479622-Sep-14 22:13 
GeneralRe: Insufficient Memory Pin
王文鹏18-Aug-15 23:48
王文鹏18-Aug-15 23:48 
QuestionHow to scan on both sides of the document Pin
sandeep7587-Jan-14 21:58
sandeep7587-Jan-14 21:58 
Questionsave images Pin
ezelden.sahi12-Nov-13 21:30
ezelden.sahi12-Nov-13 21:30 

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.