Click here to Skip to main content
15,894,343 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.3M   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: use feeder Pin
Sumtec26-Oct-02 23:50
Sumtec26-Oct-02 23:50 
GeneralRe: use feeder Pin
thomasp13-Jan-03 9:15
thomasp13-Jan-03 9:15 
GeneralRe: use feeder Pin
NETMaster13-Jan-03 10:23
NETMaster13-Jan-03 10:23 
GeneralRe: use feeder Pin
WingNut_979813-Sep-04 7:11
WingNut_979813-Sep-04 7:11 
Generalhide user interface Pin
Anonymous22-Oct-02 11:38
Anonymous22-Oct-02 11:38 
GeneralRe: hide user interface Pin
Sumtec22-Oct-02 16:46
Sumtec22-Oct-02 16:46 
QuestionHow to save image to group4 tiff Pin
Anonymous21-Oct-02 9:51
Anonymous21-Oct-02 9:51 
GeneralFatal bug reporting ... Pin
Sumtec18-Oct-02 19:20
Sumtec18-Oct-02 19:20 
First of all, thank you for your great works.Smile | :)

I am doing a project with scanner and found your source here. With your help, I've made a simple class for TWAIN scanner. And the class sounds good except ... :

You can't throw any exception correctly! And I don't know if this is my problem. Confused | :confused: (I guess not.) Poke tongue | ;-P

By fixing your code at procedure "public void Init( IntPtr hwndp )" without changing any other codes, you can see the problem:

public void Init( IntPtr hwndp )
    {
    Finish();
    TwRC rc = DSMparent( appid, IntPtr.Zero, TwDG.Control, TwDAT.Parent, TwMSG.OpenDSM, ref hwndp );
               //throw new Exception("Exception throws here are OK!");
    if( rc == TwRC.Success )
        {
        rc = DSMident( appid, IntPtr.Zero, TwDG.Control, TwDAT.Identity, TwMSG.GetDefault, srcds );
                        throw new Exception("Throw any exceptions here will finally popup StackOverflowException but not want you want.");
        if( rc == TwRC.Success )
            hwnd = hwndp;
        else
            rc = DSMparent( appid, IntPtr.Zero, TwDG.Control, TwDAT.Parent, TwMSG.CloseDSM, ref hwndp );
        }
    }


As I trace the disassembly code, I found that the exception object can be generate correctly but after that, when throwing it, the code will unexpectly generate another exception "NullReferenceException". What's more interesting is, even the "NullReferenceException" can't be thrown -- when throwing the "Null...Exception" the code will generate a new "Null...Exception". This causes the stack overflowed and finally generate an exception "StackOverflowException". Dead | X|

My questions are:
1. What causes this? Especially, why you can throw an exception normally before requesting TwMessage.GetDefault?

2. How to avoid this? I mean how to make throwing exception correctly?
'Cause I want to use exceptions to tell user the problem.
And another reason, if some other unexpecting problems happen, like "Divided by zero" or "ArgumentException", which are not the programmer's willing, it will shutdown the program without showing the correct information. This make my debugging extremely difficult. Frown | :(
Lately I found another thing: If you put the exception-throwing-code or the problem-generating-code(I mean the codes generate exception not by my willing) into a try...catch structure, you will find that you can catch an exception instead of poping up an "Null...Exception" or an "Stack...Exception". But unfortunately, you will find that the exception you catch is not what really causes the problem. For example:
During the TransferPics stage, I convert the DIB into a Bitmap and save into disk. But if the file I want to save is occupied by another object like 'pictureBox1.Image = Image.FromFile(@"C:\temp.bmp");', the system should throw an exception to indicate that the file is occupied. Disappointing me, the system throws an exception called "General GDI+ Exception" instead of what I want. Dead | X|
I don't know if this information can help you to solve the problem.

I guess if there is some problem with interoperation? Because the only different between TwMessage.OpenDSM and TwMessage.GetDefault is the DSM will fill some info into the parameter/variable "srcds".

Expecting for any one's answer, especially NETMaster's.

————————————————————————————————————————
Sumtec宇宙技术中心 VB技术支持
本贴子以“现状”提供且没有任何担保,同时也没有授予任何权利,并保持和微软所提供的条款一致。
GeneralNo one knows how to resolve it? Pin
Sumtec22-Oct-02 20:53
Sumtec22-Oct-02 20:53 
GeneralRe: Fatal bug reporting ... Pin
Member 39632818-May-03 14:42
Member 39632818-May-03 14:42 
GeneralRe: Fatal bug reporting ... Pin
bobby9sasa14-Jul-04 9:34
bobby9sasa14-Jul-04 9:34 
GeneralVB.NET Pin
virtualswp21-Sep-02 12:42
virtualswp21-Sep-02 12:42 
GeneralRe: VB.NET Pin
David Stone21-Sep-02 13:37
sitebuilderDavid Stone21-Sep-02 13:37 
Questionhow to get twain32.dll ver 1.9, just found ver1.6 download in their website Pin
song Lot19-Sep-02 7:42
susssong Lot19-Sep-02 7:42 
AnswerRe: how to get twain32.dll ver 1.9, just found ver1.6 download in their website Pin
NETMaster19-Sep-02 8:21
NETMaster19-Sep-02 8:21 
GeneralRe: how to get twain32.dll ver 1.9, just found ver1.6 download in their website Pin
tarekj26-May-10 4:50
tarekj26-May-10 4:50 
GeneralAny way to detect if a USB device is attached Pin
stevehiner28-Aug-02 11:14
stevehiner28-Aug-02 11:14 
GeneralRe: Any way to detect if a USB device is attached Pin
NETMaster28-Aug-02 13:06
NETMaster28-Aug-02 13:06 
QuestionTwain on ASP.NET page ? Pin
LaMagra26-Aug-02 23:18
LaMagra26-Aug-02 23:18 
AnswerRe: Twain on ASP.NET page ? Pin
NETMaster27-Aug-02 0:26
NETMaster27-Aug-02 0:26 
GeneralMessage Processing Pin
Alexandru Serban12-Aug-02 23:26
professionalAlexandru Serban12-Aug-02 23:26 
GeneralRe: Message Processing Pin
hishambaz6-Oct-02 23:57
hishambaz6-Oct-02 23:57 
GeneralRe: Message Processing Pin
Smitha Nishant19-Dec-02 0:00
protectorSmitha Nishant19-Dec-02 0:00 
GeneralDIB format Pin
poison30-May-02 2:56
poison30-May-02 2:56 
GeneralRe: DIB format Pin
Carl Mercier21-Jul-02 11:59
Carl Mercier21-Jul-02 11:59 

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.