Free OCR Scanning And Editor Software For Microsoft Windows 7

  

simple_ocr_free_freeware_text_recognition3

SimpleOCR engine is perhaps the most advance optical character recognition (ocr) technology in the world, their SDK is widely available for developers. The OCR software itself is free, however, it is not user friendly although it is somewhat accurate. OmniPage is by far the most user friendly OCR I’ve used, but it cost a bomb just to perform an OCR once in a blue moon.

If your documents have multi-column layouts, non-standard fonts, poor IRISPdf Server & IRISCapture for Invoicesquality or color images, you will need one of our commercial OCR applications, other than that, it is always good to use a free software like SimpleOCR, why waste money on something you are probably going to use once or twice a year?

simple_ocr_free_freeware_text_recognition2

Developers may use the SimpleOCR API to add OCR capabilities to their custom software.

Microsoft Office 2007 Document and Imaging

Do you know that Microsoft Office comes with OCR text recognition software? It is called ‘Document and Imaging’ and comes installed by default in every version except for Microsoft Office 2007, visit this tutorial on how to install ‘Document and Imaging’ for Microsoft Office 2007 and higher.

Next Part:  The Best OCR Text Processing Software And Document Management





Author: . This entry is filed under Tutorials and was updated on .



 



Top 5 Similar Articles:

Wordpress Cloud Tags:

  • free scanning software for windows 7
  • ocr editor
  • ocr windows 7

{ 1 comment… read it below or add one }

zamir

To check how MS Office OCR can be implemented programmatically check:

Simplest code to OCR an image using Microsoft Office’s Imaging functionality (requires MS-Office 2007 or later, imaging components must be installed and MODI must be added to references).

private string OCR ( string fileToOCR)
{
MODI.Document md = new MODI.Document();

md.Create(fileToOCR);
md.OCR(MODI.MiLANGUAGES.miLANG_ENGLISH, true, true);
MODI.Image img = (MODI.Image) md.Images[0];
MODI.Layout layout = img.Layout;
layout = img.Layout;
string result = layout.Text;
md.Close (false);

return result;

}

Calling function can be:
private void button6_Click(object sender, EventArgs e)
{
MessageBox.Show ( OCR (“C:\\temp\\in.tif”));
}

Leave a Comment