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

 
GeneralRe: MultiPages???????? Pin
axy10826-Apr-06 13:51
professionalaxy10826-Apr-06 13:51 
GeneralRe: MultiPages???????? Pin
asp-12329-Apr-06 22:29
asp-12329-Apr-06 22:29 
GeneralRe: MultiPages???????? Pin
Jean Bastos4-Nov-09 6:31
Jean Bastos4-Nov-09 6:31 
GeneralRe: MultiPages???????? Pin
KiemHieu30-Jul-09 6:22
KiemHieu30-Jul-09 6:22 
Questionhow set dpi and tonality ? Pin
nturri3-Apr-06 0:30
nturri3-Apr-06 0:30 
QuestionHow can Check whether the connected scanner is support the given capability? Pin
Ganesh Nagargoje1-Apr-06 0:55
Ganesh Nagargoje1-Apr-06 0:55 
QuestionUnable to set Resolution (w/ source) Pin
DrewBarfield24-Mar-06 13:33
DrewBarfield24-Mar-06 13:33 
AnswerRe: Unable to set Resolution (w/ source) Pin
DrewBarfield25-Mar-06 6:30
DrewBarfield25-Mar-06 6:30 
Ahhhhh.... I need to set ShowUI to 0! Makes sense - if you show the Acquire dialog, Twain recalls the users last settings. Wink | ;)

<br />
			// SHOW SOURCES UI<br />
				TwUserInterface guif = new TwUserInterface();<br />
				guif.ShowUI = 0;<br />
				guif.ModalUI = 1;<br />
				guif.ParentHand = hwnd;<br />
				rc = DSuserif( appid, srcds, TwDG.Control, TwDAT.UserInterface, TwMSG.EnableDS, guif );<br />
		<br />
				if( rc != TwRC.Success )<br />
				{<br />
					CloseSrc();<br />
					return false;<br />
				}<br />



Drew
AnswerRe: Unable to set Resolution (w/ source) Pin
BartekSurowiec14-Jun-06 4:47
BartekSurowiec14-Jun-06 4:47 
JokeLINK: Twain.h Pin
DrewBarfield24-Mar-06 10:38
DrewBarfield24-Mar-06 10:38 
QuestionPaper source Pin
RickDangerous1320-Mar-06 4:43
RickDangerous1320-Mar-06 4:43 
AnswerRe: Paper source Pin
gabegabe21-Mar-06 1:15
gabegabe21-Mar-06 1:15 
GeneralCustomDsData Set Pin
gabegabe15-Mar-06 21:42
gabegabe15-Mar-06 21:42 
QuestionDAT_SETUPFILEXFER... anyone ported file transfer to c# or vb.net? Pin
gabegabe15-Feb-06 1:01
gabegabe15-Feb-06 1:01 
AnswerRe: DAT_SETUPFILEXFER... anyone ported file transfer to c# or vb.net? Pin
gabegabe15-Feb-06 1:17
gabegabe15-Feb-06 1:17 
AnswerRe: DAT_SETUPFILEXFER... anyone ported file transfer to c# or vb.net? Pin
Wiz_Kid4-Aug-09 2:15
Wiz_Kid4-Aug-09 2:15 
General(Urgent)To solve Image Scanner Not Found Pin
Raja Chandrasekaran14-Feb-06 3:28
Raja Chandrasekaran14-Feb-06 3:28 
GeneralRe: (Urgent)To solve Image Scanner Not Found Pin
gabegabe16-Feb-06 1:14
gabegabe16-Feb-06 1:14 
Questionchanging scan area without showing the ui Pin
eyy12-Feb-06 10:17
eyy12-Feb-06 10:17 
GeneralAutoselecting scanner Pin
kkirtac12-Feb-06 6:13
kkirtac12-Feb-06 6:13 
GeneralRe: Autoselecting scanner Pin
Ganesh Nagargoje1-Apr-06 1:03
Ganesh Nagargoje1-Apr-06 1:03 
QuestionRe: Autoselecting scanner Pin
helen_volosuk25-Apr-06 20:43
helen_volosuk25-Apr-06 20:43 
AnswerRe: Autoselecting scanner Pin
eunice84092113-Jun-07 17:20
eunice84092113-Jun-07 17:20 
Generalpainting on a scanned DIB Pin
mikepc10-Feb-06 9:20
mikepc10-Feb-06 9:20 
GeneralRe: painting on a scanned DIB Pin
mikepc14-Feb-06 21:08
mikepc14-Feb-06 21:08 

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.