tags:

views:

1723

answers:

3

Is there any free OCR Library for C#? Thanks.

A: 

MODI, which is part of Microsoft Office I believe, works reasonably well. I used it in a project about a year ago, and results were good for my purposes.

If you have Office available in your environment, you might try this .NET wrapper.

Eric J.
I wouldn't call that "free" so much as "probably already on your work PC".
Jeffrey Hantin
I dont know if Office's available in client's environment. Thanks anyway.
TTT
+1  A: 

Take a look at this question, it should help.

RCIX
Tesseract is great, Thanks.
TTT
A: 

If you're ok with using an external, web-based API to do the OCR, take a look at http://www.wisetrend.com/wisetrend_ocr_cloud.shtml

Sample code in .NET (C#) to use this: http://snipt.org/lOgh/

Eugene Osovetsky