Accessing Document Imaging

M

Magnus

Hello

I'm using C# to open a .tif and perform OCR like this:

Process proc = new Process();

proc.StartInfo.FileName = @"/pathto/mspview.exe";
proc.StartInfo.Arguments = @"\o"; //not seem to work.
proc.StartInfo.Arguments = @"myImg.tiff";
proc.Start();

The /o switch doesn't work, but Document Imaging does open
up correctly with the .tiff

How can I programatically:

1)Start OCR
2)send the OCR text to Word programtically?
I'm using Office 2002.

Thanks you.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top