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
Member
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

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionthanksmemberMember 786391316hrs 25mins ago 
many thanks, under testing
QuestionHow can i scan multi pagesmemberMember 397326719 May '13 - 17:33 
HI All
How can i scan multi pages? Please help me.
QuestionNeed help to fix Issue in Twain .net Librarymembervinaykn.rao22 Apr '13 - 3:07 
Hi
 
when i'm scanning on samsung-scx-483x 5x3x scanner not getting full page even i set Page type-A4 and 300dpi, it's cutting off at the bottom not scanning full Page...
QuestionException throws when I use in Win7 64 bitmemberanisfathima18 Apr '13 - 22:11 
Hi guys.
 
It works great in Windows XP whereas in Win 7 64 bit it throws an error below.
 
Unable to load DLL 'twain_32.dll': The device is not ready. (Exception from HRESULT: 0x80070015)
 
Please help me guys. That will be really appreciated.
 
Thanks,
Raja.S
Questionhow set Image infomemberMohamed Nabawy15 Apr '13 - 6:59 
i want to set image color not blackandwhite
and set brightness and contrast ? how ? Laugh | :laugh:
QuestionScanner Errormemberasheykh14 Apr '13 - 22:05 
hi
i open twaingui_src project with visual studio 2012
and when i build it dot give me any error but when i run it gave this error
error is in this line :
<pre lang="c#">TwRC rc = DSMparent( appid, IntPtr.Zero, TwDG.Control, TwDAT.Parent, TwMSG.OpenDSM, ref hwndp );</pre>
<a href=""><a href="http://s2.picofile.com/file/7726514080/Scanner_error.jpg">http://s2.picofile.com/file/7726514080/Scanner_error.jpg</a>[<a href="http://s2.picofile.com/file/7726514080/Scanner_error.jpg" target="_blank" title="New Window">^</a>]</a>
Please help me.
Thanks
QuestionTwainCommand.TransferReady: hbitmap to gdi+ bitmapmemberliuxu093826 Mar '13 - 21:21 
bool IMessageFilter.PreFilterMessage( ref Message m )
               {
               TwainCommand cmd = tw.PassMessage( ref m );
               if( cmd == TwainCommand.Not )
                     return false;
  
               switch( cmd )
                     {
                     case TwainCommand.CloseRequest:
                           {
                           EndingScan();
                        tw.CloseSrc();
                           break;
                           }
                     case TwainCommand.CloseOk:
                           {
                           EndingScan();
                        tw.CloseSrc();
                           break;
                           }
                     case TwainCommand.DeviceEvent:
                           {
                        break;
                           }
                     case TwainCommand.TransferReady:
                        {
                           System.Collections.ArrayList pics = tw.TransferPictures();
                           EndingScan();
                           tw.CloseSrc();
                                                     
                           picnumber++;
                           for (int i = 0; i < pics.Count; i++)
                           {
                                 IntPtr img = (IntPtr)pics[i];
                                 Bitmap bmp = Bitmap.FromHbitmap(img);
                                 pictureBox1.Image = bmp;
                                 //   PicForm newpic = new PicForm( img );
                                 //      newpic.MdiParent = this;
                                 //      int picnum = i + 1;
                                 //      newpic.Text = "ScanPass" + picnumber.ToString() + "_Pic" + picnum.ToString();
                                 //      newpic.Show();
                           }
                           break;
                           }
                     }
  
               return true;
               }
 
The program runs at   Bitmap bmp = Bitmap.FromHbitmap(img);      Error:   GDI + generic error occurred.
QuestionThe "twaingui_demo.zip" is damaged?memberliuxu093826 Mar '13 - 0:16 
The "twaingui_demo.zip"   is damaged?
QuestionScanning on Win7 64Bitmemberkhalilsa27 Feb '13 - 4:19 
Hello,
 
The article works greatly,
But i have faced a problem on win7 64bit i need to know if there is solution for this issue ?
If there is solution then what is it ?
The exception at win7 64bit :
"
System.BadImageFormatException : An attempt was made to load a program with an incorrectformat(Exceptio from HRESULT:0x8007000B)
"
 
Failed on the following line :
DSMparent(appid, IntPtr.Zero, TwDG.Control, TwDAT.Parent, TwMSG.OpenDSM, ref hwndp);
 
Thnx,
khalil
AnswerRe: Scanning on Win7 64Bitmemberricardofrias20 Mar '13 - 7:48 
yo tenia el mismo problema lo solucione asi.
compile my proyecto con plataforma (x86). Generar --> Administrador de Configuracion.... y en la opcion de "plataforma de soluciones activas" seleccione "nueva" y (x86), aceptar, y aceptar, lo compile y lo probe y funciono
Questionuse in asp.net?memberKalpana Volety11 Jan '13 - 9:59 
Is it possible to use it in an asp.net application?
 
Thanks a lot in advance,
 
Kalpana Volety
PDF Tools Online
QuestionWIA driver is not working with multiple pagesmemberanisfathima9 Jan '13 - 22:59 
Hi all ,
 
I am a .net developer , i have got an issue with WIA driver. I am able to scan single page with WIA driver ,however I am not able to scann multiple pages with WIA driver.
 
I have gone throw the Twain software site they told that this code will be work for twain and WIA drivers
 
Can you give me the suggestion please?
 
thanks
AnswerRe: WIA driver is not working with multiple pagesmembersmile869114 Feb '13 - 8:51 
You need to change the capability to -1(for muftipage) in your Acquire method.
 
TwCapability cap = new TwCapability( TwCap.XferCount, -1 );
rc = DScap( appid, srcds, TwDG.Control, TwDAT.Capability, TwMSG.Set, cap );
if( rc != TwRC.Success )
{
CloseSrc();
return;
}
fsdfsdfsdfsdfsdfsdf

Bughow set boolean value CAP_PAPERDETECTABLE,ICAP_AUTOMATICDESKEW ecc..?membernturri13065 Jan '13 - 5:07 
i tried in various mode to set , but I always get an error

i see in the source needless to set the types bool, because?
 
could this be the problem must be set differently and how ?
 
thanks
QuestionNeed helpmemberMember 806548423 Nov '12 - 17:54 
Thank you for the great post.
I want to know how to stop the scanning in between during a multipage scan.
AnswerRe: Need helpmemberAbdullah Çetinkaya22 Jan '13 - 23:11 
Hi,
 
can you scanning multi page ? i can't it Cry | :(( (
Questionget error in multipage scanningmemberyuee17 Nov '12 - 2:08 
"short of memory" after 16 pages in 600DPI.
how can i fix that?
AnswerRe: get error in multipage scanningmembersmile86917 Nov '12 - 2:09 
you need to release the memory after every page you scan. and dispose the image
fsdfsdfsdfsdfsdfsdf

Questionhelpmemberbijarcity24 Oct '12 - 6:09 
hi thank you for great post.
how can i change to scan mulltipage?
AnswerRe: helpmembersmile86911 Nov '12 - 5:34 
You need to change the capability to -1(for muftipage) in your Acquire method.
 
TwCapability cap = new TwCapability( TwCap.XferCount, -1 );
rc = DScap( appid, srcds, TwDG.Control, TwDAT.Capability, TwMSG.Set, cap );
if( rc != TwRC.Success )
{
CloseSrc();
return;
}
fsdfsdfsdfsdfsdfsdf

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 
How can i it work with multi page scanner?
Now it scan page by page.
QuestionNeed support,membermastermindinfo25 Sep '12 - 4:25 
I am using .net twain image scanner program. but i am facing issue that when i give command of acquisition, it scan document successfully, but when i save to exit, this program does not exit to go back from where acquisition command given, kindly guide me about this.
Thanks
AnswerNeed support, till pendingmembermastermindinfo2 Oct '12 - 23:47 
My problem is still waiting for positive response from this forum, If any one have experience then kindly guide me. Thanks
GeneralRe: Need support, till pendingmemberingbabic25 Oct '12 - 4:56 
I did not understand you well. When you scan a paper you get picture in new MDI Child form. Then you can save it using File/Save as.. Then you can exit application. What is not like this at your side?

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.130516.1 | Last Updated 13 May 2002
Article Copyright 2001 by NETMaster
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid