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