Extracting Text From Image
生活随笔
收集整理的這篇文章主要介紹了
Extracting Text From Image
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
Microsoft Office Document Imaging 虛擬打印機(jī) http://www.codeproject.com/Articles/10130/OCR-with-Microsoft-Office Extracting Text From Image The following program shows you how to extract text from image. For this you'll have add reference (under COM tab) of "Microsoft Office Document Imaging Library". If you wouldn't find this reference then install microsoft office version 2007 and go to customize and choose Office tools and check the "Microsoft Office Document Imaging" and install it. Now after doing this go to (add reference and under COM tab) add its reference and use it. //Extract button working, text is extracted from image private void btnExtract_Click(object sender, EventArgs e) { MODI.Document doc = new MODI.Document(); doc.Create(getFileName); doc.OCR(MODI.MiLANGUAGES.miLANG_ENGLISH, true, true); MODI.Image img = (MODI.Image)doc.Images[0]; MODI.Layout layout = img.Layout; for (int i = 0; i < layout.Words.Count; i++) { MODI.Word word = (MODI.Word)layout.Words[i]; if (extractedText.Length > 0) { extractedText += " "; } extractedText += word.Text; richTextBox1.Text = extractedText; } }
轉(zhuǎn)載于:https://www.cnblogs.com/fx2008/archive/2013/05/12/3073828.html
總結(jié)
以上是生活随笔為你收集整理的Extracting Text From Image的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: redis 主从复制 [转]
- 下一篇: chmod常见用法