Click here to Skip to main content
15,881,424 members
Articles / Hosted Services / Storage
Tip/Trick

WIA Scanner in C# Windows Forms

Rate me:
Please Sign up or sign in to vote.
5.00/5 (19 votes)
4 Jul 2014CPOL 212.6K   42K   36   41
How to use WIA supported scanner using C#

Image 1

Introduction

This project is used to show how to use WIA Windows Image Acquisition supported Scanner. Using this project, we can scan applications from scanner and save into specific location automatically.

Background

With this project, we can learn how we can Access Scanners through C#. For this project, we need two things:

  1. WIA DLL
  2. WIA class

WIA dll is available in my resource file.

You can add this WIA class and there is no need to change anything.

C#
class WIAScanner
    {
        const string wiaFormatBMP = "{B96B3CAB-0728-11D3-9D7B-0000F81EF32E}";
        class WIA_DPS_DOCUMENT_HANDLING_SELECT
        {
            public const uint FEEDER = 0x00000001;
            public const uint FLATBED = 0x00000002;
        }
        class WIA_DPS_DOCUMENT_HANDLING_STATUS
        {
            public const uint FEED_READY = 0x00000001;
        }
        class WIA_PROPERTIES
        { 
            public const uint WIA_RESERVED_FOR_NEW_PROPS = 1024;
            public const uint WIA_DIP_FIRST = 2;
            public const uint WIA_DPA_FIRST = WIA_DIP_FIRST + WIA_RESERVED_FOR_NEW_PROPS;
            public const uint WIA_DPC_FIRST = WIA_DPA_FIRST + WIA_RESERVED_FOR_NEW_PROPS;
            //
            // Scanner only device properties (DPS)
            //
            public const uint WIA_DPS_FIRST = WIA_DPC_FIRST + WIA_RESERVED_FOR_NEW_PROPS;
            public const uint WIA_DPS_DOCUMENT_HANDLING_STATUS = WIA_DPS_FIRST + 13;
            public const uint WIA_DPS_DOCUMENT_HANDLING_SELECT = WIA_DPS_FIRST + 14;
        }
         /// <summary>
        /// Use scanner to scan an image (with user selecting the scanner from a dialog).
        /// </summary>
        /// <returns>Scanned images.</returns>
        public static List<Image> Scan()
        {
            WIA.ICommonDialog dialog = new WIA.CommonDialog();
            WIA.Device device = dialog.ShowSelectDevice
                (WIA.WiaDeviceType.UnspecifiedDeviceType, true, false);
            if (device != null)
            {
                return Scan(device.DeviceID);
            }
            else
            {
                throw new Exception("You must select a device for scanning.");
            }
        }
        /// <summary>
        /// Use scanner to scan an image (scanner is selected by its unique id).
        /// </summary>
        /// <param name="scannerName"></param>
        /// <returns>Scanned images.</returns>
      public static List<Image> Scan(string scannerId)
        {
            List<Image> images = new List<Image>();
            bool hasMorePages = true;
            while (hasMorePages)
            {
                // select the correct scanner using the provided scannerId parameter
                WIA.DeviceManager manager = new WIA.DeviceManager();
                WIA.Device device = null;
                foreach (WIA.DeviceInfo info in manager.DeviceInfos)
                {
                    if (info.DeviceID == scannerId)
                    {
                        // connect to scanner
                        device = info.Connect();
                        break;
                    }
                }
                // device was not found
                if (device == null)
                {
                    // enumerate available devices
                    string availableDevices = "";
                    foreach (WIA.DeviceInfo info in manager.DeviceInfos)
                    {
                        availableDevices += info.DeviceID + "\n";
                    }
                    // show error with available devices
                    throw new Exception("The device with provided ID could not be found. 
                    Available Devices:\n" + availableDevices);
                }
                WIA.Item item = device.Items[1] as WIA.Item;
                try
                {
                    // scan image
                    WIA.ICommonDialog wiaCommonDialog = new WIA.CommonDialog();
        WIA.ImageFile image = (WIA.ImageFile)wiaCommonDialog.ShowTransfer(item,wiaFormatBMP                                                                           , false);
                      // save to temp file
                    string fileName = Path.GetTempFileName();
                    File.Delete(fileName);
                    image.SaveFile(fileName);
                    image = null;
                    // add file to output list
                    images.Add(Image.FromFile(fileName));
                }
                catch (Exception exc)
                {
                    throw exc;
                }
                finally
                {
                    item = null;
                    //determine if there are any more pages waiting
                    WIA.Property documentHandlingSelect = null;
                    WIA.Property documentHandlingStatus = null;
                    foreach (WIA.Property prop in device.Properties)
                    {
                    if (prop.PropertyID == WIA_PROPERTIES.WIA_DPS_DOCUMENT_HANDLING_SELECT)
                            documentHandlingSelect = prop;
                    if (prop.PropertyID == WIA_PROPERTIES.WIA_DPS_DOCUMENT_HANDLING_STATUS)
                            documentHandlingStatus = prop;
                    }
                    // assume there are no more pages
                    hasMorePages = false;
                    // may not exist on flatbed scanner but required for feeder
                    if (documentHandlingSelect != null)
                    {
                        // check for document feeder
                        if ((Convert.ToUInt32(documentHandlingSelect.get_Value()) & 
                        WIA_DPS_DOCUMENT_HANDLING_SELECT.FEEDER) != 0)
                        {
                            hasMorePages = ((Convert.ToUInt32(documentHandlingStatus.get_Value()) & 
                            WIA_DPS_DOCUMENT_HANDLING_STATUS.FEED_READY) != 0);
                        }
                    }
                }
            }
            return images;
        }
        /// <summary>
        /// Gets the list of available WIA devices.
        /// </summary>
        /// <returns></returns>
        public static List<string> GetDevices()
        {
            List<string> devices = new List<string>();
            WIA.DeviceManager manager = new WIA.DeviceManager();
            foreach (WIA.DeviceInfo info in manager.DeviceInfos)
            {
                devices.Add(info.DeviceID);
            }
            return devices;
        }
    }

Using the Code

I have created a UserInterface design like this:

Image 2

Here Scan button is used to trigger the event to scan the objects placed in Scanner. I have used panel control to show scanned image.

After scanning the object placed in Scanner device, the UI will be like this:

Image 3

Image 4

Here, I have saved scanned image into specific location with yyyy-MM-dd HHmmss format.

Points of Interest

With this project, we can learn how to access local devices like printers, scanners and cameras.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
Having good experience of developing code for CTI, Scanner, Cammera, Interactive maps for IRP(International Registration Plan)integration and 311 service request maps using different Geocoding API providers.

Comments and Discussions

 
GeneralRe: HRESULT E_FAIL Pin
Member 117521108-Jun-15 22:29
Member 117521108-Jun-15 22:29 
Question"HRESULT: 0x80210003" Pin
Marco_529-Apr-15 4:01
Marco_529-Apr-15 4:01 
AnswerRe: "HRESULT: 0x80210003" Pin
quarklaudiano30-Sep-15 22:59
quarklaudiano30-Sep-15 22:59 
GeneralRe: "HRESULT: 0x80210003" Pin
tawfeek15-Mar-16 10:56
tawfeek15-Mar-16 10:56 
GeneralRe: "HRESULT: 0x80210003" Pin
Member 1259218619-Jun-16 5:49
Member 1259218619-Jun-16 5:49 
QuestionIs this dll for all scanner or for specific scanner Pin
Sabyasachi Misra9-Apr-15 19:19
professionalSabyasachi Misra9-Apr-15 19:19 
AnswerRe: Is this dll for all scanner or for specific scanner Pin
Member 1295166520-Nov-17 23:37
Member 1295166520-Nov-17 23:37 
Questionany body answer my Question ? Pin
Amir Mir Motahari7-Feb-15 8:05
Amir Mir Motahari7-Feb-15 8:05 
Questionerror Pin
Member 106069435-Feb-15 5:11
Member 106069435-Feb-15 5:11 
QuestionCant find image path from picturebox Pin
Amir Mir Motahari26-Jan-15 0:59
Amir Mir Motahari26-Jan-15 0:59 
AnswerRe: Cant find image path from picturebox Pin
Chakravarthi Elchuri26-Jan-15 6:05
professionalChakravarthi Elchuri26-Jan-15 6:05 
GeneralRe: Cant find image path from picturebox Pin
Amir Mir Motahari26-Jan-15 6:18
Amir Mir Motahari26-Jan-15 6:18 
Questionerreur Pin
Member 112853324-Dec-14 0:17
Member 112853324-Dec-14 0:17 
AnswerRe: erreur Pin
Chakravarthi Elchuri11-Dec-14 19:59
professionalChakravarthi Elchuri11-Dec-14 19:59 
AnswerRe: erreur Pin
Chakravarthi Elchuri11-Dec-14 20:24
professionalChakravarthi Elchuri11-Dec-14 20:24 
GeneralMy vote of 5 PinPopular
Volynsky Alex6-Jul-14 4:00
professionalVolynsky Alex6-Jul-14 4:00 
GeneralRe: My vote of 5 Pin
Chakravarthi Elchuri6-Jul-14 4:14
professionalChakravarthi Elchuri6-Jul-14 4:14 
GeneralRe: My vote of 5 Pin
Volynsky Alex6-Jul-14 6:54
professionalVolynsky Alex6-Jul-14 6:54 

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.