LEADTOOLS教程:使用LEADTOOLS OCR將屏幕截圖另存為可搜索的PDF文件
LEADTOOLS OCR Module - OmniPage Engine增加了對(duì)添加光學(xué)字符識(shí)別(OCR)和智能字符識(shí)別(ICR)技術(shù)到應(yīng)用程序的方法,并且包含開發(fā)穩(wěn)健的,高性能的和可擴(kuò)展的圖像識(shí)別解決方案所需要的一切。本文介紹了使用LEADTOOLS OCR將屏幕截圖另存為可搜索的PDF文件的內(nèi)容,希望對(duì)您有所幫助~
截屏是一種快速而簡便的獲取和共享信息的方法。雖然Windows提供了一個(gè)剪切工具,但它只能捕獲和保存圖像。使用此代碼,您可以保存圖像以及圖像中的文本??梢詾樵撐谋窘⑺饕员阋院罂梢允褂肳indows內(nèi)置搜索找到信息。
使用.NET Clipboard Class,開發(fā)人員可以輕松地使用GetImageMethod來檢索存儲(chǔ)在剪貼板中的圖像。 從剪貼板中獲得圖像后,請(qǐng)使用LEADTOOLS通過ConvertFromImage方法將圖像轉(zhuǎn)換為RasterImage。 現(xiàn)在,您可以使用LEADTOOLS OCR SDK將新的RasterImage轉(zhuǎn)換為可搜索的PDF。
代碼
.NET代碼從剪貼板獲取圖像
public Image GetClipboardImage() { Image returnImage = null; if (Clipboard.ContainsImage()) { returnImage = Clipboard.GetImage(); } return returnImage; }
LEADTOOLS OCR代碼可將剪貼板中的圖像另存為可搜索的PDF
string outputPath = $@"C:\Temp\{textBox1.Text}.pdf"; Image screenshot = GetClipboardImage(); using (RasterImage image = RasterImageConverter.ConvertFromImage(screenshot, ConvertFromImageOptions.None)) { using (IOcrEngine ocrEngine = OcrEngineManager.CreateEngine(OcrEngineType.LEAD, false)) { ocrEngine.Startup(codecs, null, null, null; // Create an OCR document using (IOcrDocument ocrDocument = ocrEngine.DocumentManager.CreateDocument()) { // Add this image to the document IOcrPage ocrPage = ocrDocument.Pages.AddPage(image, null); // Auto-recognize the zones in the page ocrPage.AutoZone(null); // Recognize it and save it as a PDF file ocrPage.Recognize(null); ocrDocument.Save(outputPath, DocumentFormat.Pdf, null); } } }
相關(guān)內(nèi)容推薦:
包含OCR的產(chǎn)品有:LEADTOOLS Recognition Imaging Developer Toolkit、LEADTOOLS Document Imaging Suite Developer Toolkit、LEADTOOLS OCR Module - LEAD Engine、LEADTOOLS OCR Module - OmniPage Engine、LEADTOOLS ICR Module - OmniPage Engine、LEADTOOLS OCR Module - OmniPage Engine with Additional Languages,想要了解更多產(chǎn)品詳情請(qǐng)點(diǎn)擊【咨詢?cè)诰€客服】