Click here to Skip to main content
Licence Public Domain
First Posted 16 Sep 2001
Views 1,857,376
Downloads 31,552
Bookmarked 346 times

.NET TWAIN image scanner

By NETMaster | 12 May 2002
Using TWAIN API to scan images
3 votes, 1.7%
1
1 vote, 0.6%
2
5 votes, 2.8%
3
17 votes, 9.6%
4
151 votes, 85.3%
5
4.91/5 - 187 votes
8 removed
μ 4.68, σa 1.11 [?]

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

Member


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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionTransferPictures() method returns pics count 1 always Pinmemberappalanaidu Aug201123:29 7 Feb '12  
Question+1 Pinmembermiwalter23:06 4 Feb '12  
GeneralMy vote of 1 Pinmembernavidsoft23:39 10 Jan '12  
QuestionThis get freezed the whole application PinmemberMember 33376223:24 21 Dec '11  
QuestionScanning area parameter through application PinmemberRajendrarajsri16:42 28 Nov '11  
QuestionTWAIN A3 Papersize change i.e. TwCapability capPaperSize = new TwCapability(TwCap.ICAP_SUPPORTEDSIZES, 1) PinmemberWaynePorter3:55 18 Nov '11  
Questioncan any one give this whole project in vb.net Pinmembernsk_saravana22:13 15 Nov '11  
AnswerRe: can any one give this whole project in vb.net Pinmemberwellhi17:43 18 Nov '11  
QuestionAutocrop Pinmembernsk_saravana23:21 13 Nov '11  
QuestionRemoving Scanner UI Pinmembernsk_saravana18:40 13 Nov '11  
Questionremoving the UI Pinmembermist9995:45 11 Nov '11  
QuestionADF Question.....Help Me Pinmemberbeyond111717:59 17 Oct '11  
QuestionCapture color image using twain Pinmemberakul1231:43 21 Sep '11  
QuestionCould not compile Pinmemberditoroin1:33 21 Sep '11  
SuggestionRe: Could not compile PinmemberMrPetan6:29 21 Sep '11  
QuestionCAP_DEVICEONLINE always returns false Pinmemberbennett cummins7:26 13 Sep '11  
Questionconverting this sample in asp.net Pinmemberakul12323:33 23 Aug '11  
AnswerRe: converting this sample in asp.net Pinmembermahamahmaha22:22 22 Jan '12  
QuestionImage size PinmemberVBCoder686:14 18 Aug '11  
QuestionDont want dialog boxes PinmemberNeha Ameen2:22 16 Aug '11  
GeneralMy vote of 5 PinmemberShahin Khorshidnia20:50 12 Aug '11  
QuestionADF is not working Pinmembertelme23:32 2 Aug '11  
AnswerRe: ADF is not working Pinmemberbeyond11177:01 18 Oct '11  
GeneralRe: ADF is not working Pinmembertelme20:29 18 Oct '11  
QuestionIs it possible to do ADF and Flatbed Scanner in TWAIN Pinmembertelme0:27 31 Jul '11  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

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