Click here to Skip to main content
15,923,681 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.4M   132.4K   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: no scanner attached Pin
Russ Judge21-Nov-06 6:25
Russ Judge21-Nov-06 6:25 
GeneralRe: no scanner attached Pin
nisdes6-Jan-10 19:46
nisdes6-Jan-10 19:46 
Questioncheck scanner Pin
volodymyr_4-May-06 21:18
volodymyr_4-May-06 21:18 
QuestionUnable To Set DPI Pin
Syed Adil Umair2-May-06 5:53
Syed Adil Umair2-May-06 5:53 
QuestionRe: Unable To Set DPI Pin
mosquets30-Aug-06 5:04
mosquets30-Aug-06 5:04 
AnswerRe: Unable To Set DPI Pin
kevin earley10-Jan-07 6:28
kevin earley10-Jan-07 6:28 
QuestionHow to save the scanned image into a PictureBox? Pin
firststar23-Apr-06 4:43
firststar23-Apr-06 4:43 
AnswerRe: How to save the scanned image into a PictureBox? Pin
axy10826-Apr-06 13:50
professionalaxy10826-Apr-06 13:50 
hi firststar,

read all the post here i found this code:

Public Function ImgToBitmap(ByVal dibhandp As IntPtr) As Bitmap
bmprect = New Rectangle(0, 0, 0, 0)
dibhand = dibhandp
bmpptr = GlobalLock(dibhand)
pixptr = GetPixelInfo(bmpptr)
Dim TempBMP As Bitmap = New Bitmap(bmprect.Width, bmprect.Height)
Dim TempGrap As Graphics = Graphics.FromImage(TempBMP)
Dim hdc As IntPtr = TempGrap.GetHdc
SetDIBitsToDevice(hdc, 0, 0, bmprect.Width, bmprect.Height, 0, 0, 0, bmprect.Height, pixptr, bmpptr, 0)
TempGrap.ReleaseHdc(hdc)
TempGrap.Dispose()
GlobalFree(dibhand)
dibhand = IntPtr.Zero
Return (TempBMP)
End Function

this function transform the image scan to a bitmap and after you can pass this result to a picture box:

I modify the class picForm, and i create a new class name scanToImage here is the code:

scanToImage.vb

----------------------------------------------------------------------------------
Imports System
Imports System.Text
Imports System.Runtime.InteropServices
Imports System.Drawing
Imports System.Collections
Imports System.ComponentModel

Namespace TwainGui

<structlayout(layoutkind.sequential, pack:="2)"> Friend Class BITMAPINFOHEADER
Public biSize As Integer
Public biWidth As Integer
Public biHeight As Integer
Public biPlanes As Short
Public biBitCount As Short
Public biCompression As Integer
Public biSizeImage As Integer
Public biXPelsPerMeter As Integer
Public biYPelsPerMeter As Integer
Public biClrUsed As Integer
Public biClrImportant As Integer
End Class

Public Class scanToImage

<dllimport("gdi32.dll", exactspelling:="True)"> Friend Shared Function SetDIBitsToDevice(ByVal hdc As IntPtr, ByVal xdst As Integer, ByVal ydst As Integer, ByVal width As Integer, ByVal height As Integer, ByVal xsrc As Integer, ByVal ysrc As Integer, ByVal start As Integer, ByVal lines As Integer, ByVal bitsptr As IntPtr, ByVal bmiptr As IntPtr, ByVal color As Integer) As Integer
End Function
<dllimport("kernel32.dll", exactspelling:="True)"> Friend Shared Function GlobalLock(ByVal handle As IntPtr) As IntPtr
End Function
<dllimport("kernel32.dll", exactspelling:="True)"> Friend Shared Function GlobalFree(ByVal handle As IntPtr) As IntPtr
End Function
<dllimport("kernel32.dll", charset:="CharSet.Auto)"> Public Shared Sub OutputDebugString(ByVal outstr As String)
End Sub

Dim bmi As BITMAPINFOHEADER
Dim bmprect As Rectangle
Dim dibhand As IntPtr
Dim bmpptr As IntPtr
Dim pixptr As IntPtr

Public Sub New(ByVal dibhandp As IntPtr)
bmprect = New Rectangle(0, 0, 0, 0)
dibhand = dibhandp
bmpptr = GlobalLock(dibhand)
pixptr = GetPixelInfo(bmpptr)
End Sub

Protected Function GetPixelInfo(ByVal bmpptr As IntPtr) As IntPtr
bmi = New BITMAPINFOHEADER()
Marshal.PtrToStructure(bmpptr, bmi)

bmprect.X = bmprect.Y = 0
bmprect.Width = bmi.biWidth
bmprect.Height = bmi.biHeight

If (bmi.biSizeImage = 0) Then
bmi.biSizeImage = Int((((bmi.biWidth * bmi.biBitCount) + 31) & Hex(Not (31))) / 2 ^ 3) * bmi.biHeight
End If

Dim p As Integer = bmi.biClrUsed
If ((p = 0) And (bmi.biBitCount <= 8)) Then
p = Int(1 * 2 ^ bmi.biBitCount)
End If
p = (p * 4) + bmi.biSize + CType(bmpptr.ToInt32, Integer)
Return New IntPtr(p)
End Function

Public Function ImgToBitmap(ByVal dibhandp As IntPtr) As Bitmap
bmprect = New Rectangle(0, 0, 0, 0)
dibhand = dibhandp
bmpptr = GlobalLock(dibhand)
pixptr = GetPixelInfo(bmpptr)
Dim TempBMP As Bitmap = New Bitmap(bmprect.Width, bmprect.Height)
Dim TempGrap As Graphics = Graphics.FromImage(TempBMP)
Dim hdc As IntPtr = TempGrap.GetHdc
SetDIBitsToDevice(hdc, 0, 0, bmprect.Width, bmprect.Height, 0, 0, 0, bmprect.Height, pixptr, bmpptr, 0)
TempGrap.ReleaseHdc(hdc)
TempGrap.Dispose()
GlobalFree(dibhand)
dibhand = IntPtr.Zero
Return (TempBMP)
End Function
End Class
End Namespace
-------------------------------------------------------------------------------

and here is the place where i call this function:

-------------------------------------------------------------------------------
...
Public Function PreFilterMessage(ByRef m As Message) As Boolean Implements IMessageFilter.PreFilterMessage
Dim cmd As TwainCommand = tw.PassMessage(m)
If (cmd = TwainCommand.Not) Then
Return False
End If

Select Case cmd
Case TwainCommand.CloseRequest
EndingScan()
tw.CloseSrc()
Case TwainCommand.CloseOk
EndingScan()
tw.CloseSrc()
Case TwainCommand.DeviceEvent
Case TwainCommand.TransferReady
'Obtenemos las Imagenes Scaneadas
Dim pics As ArrayList = tw.TransferPictures()
'Finalizamos el scaneo
EndingScan()
'Cerramos Scanner
tw.CloseSrc()
'Contador pora el numero de imagenes scaneadas
picnumber += 1
Dim i As Integer
'Recorremos el numero de Imagenes para mostrarlas en un PicBox cada una
For i = 0 To pics.Count - 1 Step 1
Dim img As IntPtr = CType(pics(i), IntPtr)
Dim scan As New scanToImage(img)
Dim imagen As Image
anchoPrincipal = panelPrincipal.Width
altoPrincipal = panelPrincipal.Height
imagen = scan.ImgToBitmap(img)
Me.AutoScroll = True
Dim picnum As Integer = i + 1
Dim picActual As PictureBox
picActual = Me.CrearPicture(i)
picActual.SizeMode = PictureBoxSizeMode.StretchImage
picActual.Image = imagen
Next
End Select
Return True
End Function
...
-------------------------------------------------------------------------------

But i have one error, when you scan for the first time all is right, but when you try to scan for second time whitout close the aplication when you do anyone action the application is close, i try to fix this but i can, i hope you can help me.

i hope my code help you and you can help me Big Grin | :-D Big Grin | :-D Big Grin | :-D

PD. sorry about the english but i'm mexican and my english is not good Poke tongue | ;-P Poke tongue | ;-P Poke tongue | ;-P
GeneralRe: How to save the scanned image into a PictureBox? Pin
firststar30-May-06 2:14
firststar30-May-06 2:14 
AnswerRe: How to save the scanned image into a PictureBox? Pin
Bambi35-May-06 2:15
Bambi35-May-06 2:15 
GeneralRe: How to save the scanned image into a PictureBox? Pin
firststar30-May-06 2:47
firststar30-May-06 2:47 
AnswerRe: How to save the scanned image into a PictureBox? Pin
mosquets30-Aug-06 5:16
mosquets30-Aug-06 5:16 
GeneralRe: How to save the scanned image into a PictureBox? Pin
mazza198624-May-10 2:27
mazza198624-May-10 2:27 
GeneralBug Report Pin
firststar23-Apr-06 4:14
firststar23-Apr-06 4:14 
Generalgotdotnet workspace for working with twain Pin
gabegabe22-Apr-06 2:43
gabegabe22-Apr-06 2:43 
GeneralRe: gotdotnet workspace for working with twain Pin
gabegabe16-May-06 1:01
gabegabe16-May-06 1:01 
QuestionMultiPages???????? Pin
axy1087-Apr-06 13:27
professionalaxy1087-Apr-06 13:27 
AnswerRe: MultiPages???????? Pin
felix.mcallister21-Apr-06 5:08
felix.mcallister21-Apr-06 5:08 
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 

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.