Click here to Skip to main content
15,878,809 members
Articles / Programming Languages / C#
Article

The Paperless Desktop

Rate me:
Please Sign up or sign in to vote.
4.91/5 (83 votes)
5 Apr 20075 min read 416K   7K   316   104
How to perform scanning, rearranging, OCR and Outlook export of documents for a paperless future - or at least a tidy desktop.

Sample screenshot

Introduction

After playing around with Microsoft's Document Imaging Library (MODI) in OCR with Microsoft Office, I decided to add some features to the primary MODI application like scanning, multi TIFF rearrangement and Outlook export. The Outlook export enables you to organize your documents by email folders. Since tools like LookOut, this might be faster than the walk to the good old file cabinet.

Before reading, please note

  • You need Office 2003 or Office 2007 to run the application!
  • For Office 2007 support see the article OCR with Microsoft Office.
  • Office XP does not contain MODI and there is no way to change that!
  • For email export, you need MS Outlook 2003 or MS Outlook 2007!

The Application

The application looks very similar to the well known MS Imaging Viewer. The most important difference is the email export to offer a comfortable document storage. From the technical point of view, the application is based on three technologies: MODI, TWAIN and Outlook-Interop (for each of these topics, there is a link at the end of the article which can be used as a tutorial, therefore I won't describe specific details of these techniques). Their integration needed some changes and enhancements and this is what the article is about.

Sample screenshot

TWAIN Scanning support

First of all, I chose TWAIN support instead of the modern WIA standard because I own a scanner that only supports TWAIN. Based on the very well done code from the Scanning via TWAIN article, I created the TwainControl to encapsulate the scanning functionality. The interaction with the control is done with three methods and one event.

Init and Release

C#
twainControl1.Init(this.Handle);
twainControl1.Release();

Device Selection

The TWAIN library offers a device selection dialog.

Sample screenshot

This dialog can be shown by calling the following method:

C#
twainControl1.SelectDevice();

Starting the scanning process

The start method has two parameters, bool UI and bool modal. With UI = false, you can start the process without the scanner's configuration dialog. The modal flag controls the modal status of the scan dialog.

C#
twainControl1.StartScanning(UI, modal);

Finishing the scanning process

After the control has proceeded scanning, a FinishScanning event is fired. The main application is registered as a listener.

C#
private void twainControl1_FinishScanning(object sender,
        Util.TwainLib.FinishScanningEventArgs e)
{
    if (e.scanned)
    {
        ArrayList images = twainControl1.PopImages();
        AppendScannedImages(images);
        SaveFile();
    }
}

This is the point where integration comes in. The PopImages method writes all scanned pages (if you have a multi page scanner device) into an image array. Afterwards, these images are appended to the MODI document.

Using the scanner button

If you want to open the application by pressing the scanner hardware button, you can add the application path to the Registry. The Registry key in HKEY_LOCAL_MACHINE is Software\Microsoft\Windows\CurrentVersion\StillImage\Registered Applications.

The key value should be:

[Path\]MartinsPaperlessDesktop.exe /StiDevice:%1 /StiEvent:%2

Handling Multi-TIFF files

The first version included self written TIFF handling code (which was not making me happy). By integrating the MODI library, handling multi-TIFF files gets really simple and fast.

Appending Pages

One valuable feature is the 'append'-function which appends pages to a multi-TIFF document. In case that your scanner device does only support single page scanning, this might be helpful.

C#
private void AppendImage(string source)
{
    if (_MODIDocument == null) return;
    try
    {
        MODI.Document document = new MODI.Document();
        document.Create(source);
        _changed = true;
        // iterate through all image pages of the source document
        for (int i = 0; i < document.Images.Count; i++)
        {
            _MODIDocument.Images.Add(document.Images[i],null);
        }
    }
    catch(Exception ee)
    {
        MessageBox.Show(ee.Message);
        SetImage("",false);
    }
}

Rearranging Pages

If you got mixed up during the scanning process, you can move single pages within the document to get the order you want.

C#
private void MoveImage(int pageNumber, bool up)
{
    if (_MODIDocument == null) return;
    MODI.Image img = (MODI.Image) _MODIDocument.Images[pageNumber];
    if (up)
    {
        if (pageNumber-1 >= 0)
        {
            MODI.Image prevImg = 
               (MODI.Image) _MODIDocument.Images[pageNumber-1];
            // the add methode needs the "beforeImage" as second argument
            _MODIDocument.Images.Add(img,prevImg);
            MODI.Image removeImg = 
               (MODI.Image) _MODIDocument.Images[pageNumber+1]; 
            _MODIDocument.Images.Remove(removeImg);
            axMiDocView1.PageNum = pageNumber-1;
        }
    }
    else
    {
        if (pageNumber+1 < axMiDocView1.NumPages)
        {
            MODI.Image nextImg = null;
            if (pageNumber+2 < _MODIDocument.Images.Count)
            {
                nextImg = 
                  (MODI.Image) _MODIDocument.Images[pageNumber+2]; 
            }
            // if the second argument is NULL, 
            //the page is appended at the end of the image
            _MODIDocument.Images.Add(img,nextImg);
            MODI.Image removeImg = 
               (MODI.Image) _MODIDocument.Images[pageNumber]; 
            _MODIDocument.Images.Remove(removeImg);
            axMiDocView1.PageNum = pageNumber+1;
        }
    }
    // this action causes a change notification
    _changed = true;
    ShowStatus();
}

OCR and Layout Processing

One primary goal of the layout processing was to keep the original document layout alive. The OCR comes from the MODI.Document.OCR() method. I used the document model from Document Processing Part II to get a better layout serialization than provided by MODI. Since we will export the document's text to an HTML based email, a very trivial HTML converting is done.

C#
private string GetDocumentText()
{    
    Model.Document doc = Model.Document.CreateByMODI(_MODIDocument);

    string c = doc.GetText();
        
    // very trivial converting to HTML
    c = c.Replace("\r\n","<\br\>");
    return c;
}

MS Outlook Export

Now, the work is all done and exporting is straightforward coding. The source is placed in the DocumentMailer class. The constructor method opens a connection to MS Outlook.

C#
private Microsoft.Office.Interop.Outlook.Application oApp;
private Microsoft.Office.Interop.Outlook._NameSpace oNameSpace;
private Microsoft.Office.Interop.Outlook.MAPIFolder oOutboxFolder; 

public DocumentMailer()  
{      
    oApp = new Outlook.Application();      
    oNameSpace= oApp.GetNamespace("MAPI");      
    oNameSpace.Logon(null,null,true,true);  
    oOutboxFolder = 
       oNameSpace.GetDefaultFolder(OlDefaultFolders.olFolderOutbox);
}

With an opened Outlook connection, the AddToOutBox method does all the work.

C#
Outlook._MailItem oMailItem = 
    (Outlook._MailItem)oApp.CreateItem(Outlook.OlItemType.olMailItem);
oMailItem.To = toValue;   
oMailItem.BodyFormat = Outlook.OlBodyFormat.olFormatHTML;
oMailItem.Subject = subjectValue;      
oMailItem.HTMLBody = bodyValue;     
oMailItem.SaveSentMessageFolder = oOutboxFolder;

//.. attachments

oMailItem.Save();  
oMailItem.Display(null);

E-Mail Configuration

To save us from selecting our personal settings each time again, I added a small configuration class. The code is placed in an instance of Configuration which is loaded during initialization.

Sample screenshot

To have a short look at serialization and deserialization, here is the code for loading:

C#
public static Configuration LoadFromFile(string path)
{
    IFormatter formatter = new BinaryFormatter();
    Stream streamS = 
      new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read);
    object o = formatter.Deserialize(streamS);
    Configuration solution = (Configuration) o;
    streamS.Close();
    return solution ;
}

..and for saving as well:

C#
public bool SaveToFile(string path)
{
    IFormatter formatter = new BinaryFormatter();
    Stream stream = 
      new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.None);
    formatter.Serialize(stream, this);
    stream.Close();
    return true;
}

The Paperless Desktop - A way to clean up?

After all this technical stuff, we can afford a little distraction. Accidentally I designed a haunting process oriented adventure.

Players

  • The Physical Document or Letter.
  • A Desktop Perforator.
  • A Clinch Stapler.
  • One or more Standard Lever Arch Files.
  • A Waste Paper Basket.
  • A Scanner.
  • Your PC with Office 2003 and Outlook.
  • The mighty MartinsPaperlessDesktop Application.

Game instructions:

  1. Open the physical document ("paper").
  2. Use envelop with waste paper basket (no, you don't need it for further inquiries).
  3. Use scanner with document (yes, here we are, back on good old Monkey Island!).
  4. Use stapler and perforator with letter.
  5. Use letter with standard lever arch files.
  6. Use MartinsPaperlessDesktop to perform OCR and E-mail export.
  7. Forget, that you ever got a physical document. Start believing: "Oh, I got an email."

Sounds too basic to be a five star adventure? Well, you are probably right, but it works for me. Mostly.

It's obvious, the ultimate goal of a paperless desktop is not archived by software. The answer seems to stay in the process. Bringing peace into your desktop's chaos needs discipline from the moment you open the post box. Feel free to share your own experiences in the article's discussion board. That's all for the moment; thanks for reading - and of course, thanks for voting too.

References

Versions

  • 3 Apr 2007: Additional information
  • 24 Jun 2005: Added search functions
  • 12 Jun 2005: Initial version

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
CEO Axonic Informationssysteme GmbH, Germany
Germany Germany

Comments and Discussions

 
GeneralIntegrated OCR and Database Pin
Member 183508326-Jul-05 4:33
Member 183508326-Jul-05 4:33 
GeneralRe: Integrated OCR and Database Pin
Anonymous26-Jul-05 23:00
Anonymous26-Jul-05 23:00 
Generalpaperless desktop Pin
sreejith ss nair22-Jun-05 19:36
sreejith ss nair22-Jun-05 19:36 
GeneralRe: paperless desktop Pin
Martin Welker22-Jun-05 20:35
Martin Welker22-Jun-05 20:35 
GeneralRe: paperless desktop Pin
sreejith ss nair22-Jun-05 21:01
sreejith ss nair22-Jun-05 21:01 
GeneralRe: paperless desktop Pin
sreejith ss nair22-Jun-05 22:54
sreejith ss nair22-Jun-05 22:54 
GeneralRe: paperless desktop Pin
Martin Welker23-Jun-05 9:15
Martin Welker23-Jun-05 9:15 
GeneralMODI Viewer Pin
csouthern22-Jun-05 11:11
csouthern22-Jun-05 11:11 
GeneralRe: MODI Viewer Pin
Martin Welker22-Jun-05 20:27
Martin Welker22-Jun-05 20:27 
GeneralRe: MODI Viewer Pin
csouthern23-Jun-05 7:08
csouthern23-Jun-05 7:08 
GeneralRe: MODI Viewer Pin
andrejean2-Sep-05 3:07
andrejean2-Sep-05 3:07 
GeneralGreat! Pin
Michael J. Dillmann21-Jun-05 0:05
sussMichael J. Dillmann21-Jun-05 0:05 
GeneralRe: Great! Pin
Martin Welker21-Jun-05 11:01
Martin Welker21-Jun-05 11:01 
GeneralRe: Great! Pin
mariahayek5-May-08 11:58
mariahayek5-May-08 11:58 
GeneralExcellent. Pin
St. Langschneider20-Jun-05 23:48
sussSt. Langschneider20-Jun-05 23:48 
GeneralRe: Excellent. Pin
Martin Welker21-Jun-05 11:02
Martin Welker21-Jun-05 11:02 
Generalcompliation reference error Pin
majidbhatti20-Jun-05 2:12
majidbhatti20-Jun-05 2:12 
GeneralRe: compliation reference error Pin
Martin Welker20-Jun-05 4:20
Martin Welker20-Jun-05 4:20 
GeneralRe: compliation reference error Pin
majidbhatti21-Jun-05 3:51
majidbhatti21-Jun-05 3:51 
Generalat your service.. Pin
Martin Welker21-Jun-05 11:15
Martin Welker21-Jun-05 11:15 
GeneralTopic 2 Pin
Anonymous16-Jun-05 21:24
Anonymous16-Jun-05 21:24 
GeneralRe: Topic 2 Pin
sreejith ss nair22-Jun-05 19:38
sreejith ss nair22-Jun-05 19:38 
Generaltopic1 Pin
Anonymous16-Jun-05 21:19
Anonymous16-Jun-05 21:19 
GeneralRe: topic1 Pin
o_pontios18-Jul-05 14:19
o_pontios18-Jul-05 14:19 

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.