Click here to Skip to main content
Click here to Skip to main content

.NET TWAIN image scanner

By , 12 May 2002
 

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:

[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:

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

About the Author

NETMaster
Web Developer
Switzerland Switzerland
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionError in the CodememberHerman M. Reyes7-Jun-13 0:44 
QuestionthanksmemberMember 786391322-May-13 12:15 
QuestionHow can i scan multi pagesmemberMember 397326719-May-13 17:33 
QuestionNeed help to fix Issue in Twain .net Librarymembervinaykn.rao22-Apr-13 3:07 
QuestionException throws when I use in Win7 64 bitmemberanisfathima18-Apr-13 22:11 
Questionhow set Image infomemberMohamed Nabawy15-Apr-13 6:59 
QuestionScanner Errormemberasheykh14-Apr-13 22:05 
QuestionTwainCommand.TransferReady: hbitmap to gdi+ bitmapmemberliuxu093826-Mar-13 21:21 
QuestionThe "twaingui_demo.zip" is damaged?memberliuxu093826-Mar-13 0:16 
QuestionScanning on Win7 64Bitmemberkhalilsa27-Feb-13 4:19 
AnswerRe: Scanning on Win7 64Bitmemberricardofrias20-Mar-13 7:48 
Questionuse in asp.net?memberKalpana Volety11-Jan-13 9:59 
QuestionWIA driver is not working with multiple pagesmemberanisfathima9-Jan-13 22:59 
AnswerRe: WIA driver is not working with multiple pagesmembersmile869114-Feb-13 8:51 
Bughow set boolean value CAP_PAPERDETECTABLE,ICAP_AUTOMATICDESKEW ecc..?membernturri13065-Jan-13 5:07 
QuestionNeed helpmemberMember 806548423-Nov-12 17:54 
AnswerRe: Need helpmemberAbdullah Çetinkaya22-Jan-13 23:11 
Questionget error in multipage scanningmemberyuee17-Nov-12 2:08 
AnswerRe: get error in multipage scanningmembersmile86917-Nov-12 2:09 
Questionhelpmemberbijarcity24-Oct-12 6:09 
AnswerRe: helpmembersmile86911-Nov-12 5:34 
Questionhelp mememberbijarcity24-Oct-12 5:24 
thank you for the great post.i read your post and i downloaded your code ,i want to know how can i change the   twain to scan multipage ,because in my company we need to scan multipage?
thank you
Questionvery helpful and tested with some scannersmemberMember 667621-Oct-12 9:09 
QuestionNeed support,membermastermindinfo25-Sep-12 4:25 
AnswerNeed support, till pendingmembermastermindinfo2-Oct-12 23:47 
GeneralRe: Need support, till pendingmemberingbabic25-Oct-12 4:56 
GeneralRe: Need support, till pendingmemberAbdullah Çetinkaya22-Jan-13 23:26 
GeneralMy vote of 4memberBurak Tunçbilek7-Sep-12 4:09 
QuestionImage Resolution Problem.memberrush2rajiv29-Jun-12 0:06 
QuestionOut of Memory ExceptionmemberJaydeep Jadav15-Jun-12 20:56 
QuestionRe: Out of Memory Exceptionmembernileshkakade26-Feb-13 19:17 
AnswerRe: Out of Memory ExceptionmemberJaydeep Jadav1-Mar-13 23:18 
QuestionLoader Lock Error Problemmemberleenak8-Jun-12 2:11 
GeneralRe: Loader Lock Error Problem [modified]membersmile869110-Jul-12 11:59 
QuestionDuplex ScanningmemberIsuru Alahakoon8-Jun-12 1:14 
Questionhide progress bar window.memberMember 46759534-Jun-12 21:32 
QuestionError on 64 bits machinememberdavid bong1-Jun-12 6:09 
AnswerRe: Error on 64 bits machinememberboblogan13-Jun-12 6:00 
GeneralRe: Error on 64 bits machinememberAbdullah Çetinkaya22-Jan-13 23:33 
Questionset Flatbed or FeadermemberAndrew8231-May-12 21:22 
QuestionCan use project as webmemberramysamir29-May-12 0:40 
QuestionDo you have code for automatically control scannermembergolanw12-May-12 22:52 
QuestionDLLmemberMember 888329025-Apr-12 9:57 
QuestionHow Can I change scaning variables with c# code?memberRadu23717-Apr-12 20:46 
AnswerRe: How Can I change scaning variables with c# code?memberMember 100259915-May-13 16:36 
QuestionHow to check scanner is connected befor Acquirememberswapnil7434513-Apr-12 21:02 
Questionconverting?memberdarkalastair19-Mar-12 22:15 
AnswerRe: converting?memberMember 667621-Oct-12 8:58 
QuestionTwainLib Visual Studio 2010 Windows 7 64 bitmembersanvi615-Mar-12 3:10 
AnswerRe: TwainLib Visual Studio 2010 Windows 7 64 bitmemberUstesGreenridge26-Mar-12 3:55 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 13 May 2002
Article Copyright 2001 by NETMaster
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid