IronOCR 語言 切罗基 Cherokee OCR in C# Curtis Chau 更新日期:7月 22, 2025 Download IronOCR NuGet 下載 DLL 下載 Windows 安裝程式 Start Free Trial Copy for LLMs Copy for LLMs Copy page as Markdown for LLMs Open in ChatGPT Ask ChatGPT about this page Open in Gemini Ask Gemini about this page Open in Grok Ask Grok about this page Open in Perplexity Ask Perplexity about this page Share Share on Facebook Share on X (Twitter) Share on LinkedIn Copy URL Email article This article was translated from English: Does it need improvement? Translated View the article in English 另外 126 種語言 IronOCR 是一個 C# 軟體組件,允許 .NET 程式員從圖片和 PDF 文件中讀取 126 種語言的文本,包括切羅基語。 它是一個專為 .NET 開發者設計的 Tesseract 高級分支,在速度和準確性方面經常優於其他 Tesseract 引擎。 IronOcr.Languages.Cherokee 的內容 此套件包含 120 種 .NET 的 OCR 語言: 切羅基字母 切羅基字母(最佳) 切羅基字母(快速) 切羅基語 切羅基語(最佳) 切羅基語(快速) 下載 切羅基語言包 style='white-space:default'>[ᏣᎳᎩ ᎦᏬᏂᎯᏍᏗ] 下載為 Zip 使用 NuGet 安裝 安裝 首先要做的事情是將我們的 切羅基 OCR 套件安裝到您的 .NET 專案中。 Install-Package IronOCR.Languages.Cherokee 代碼示例 這個 C# 代碼範例從圖片或 PDF 文件中讀取切羅基文本。 // Import the IronOcr namespace using IronOcr; class Program { static void Main() { // Create an instance of the IronTesseract class var Ocr = new IronTesseract(); // Set the language for OCR to Cherokee Ocr.Language = OcrLanguage.Cherokee; // Use OcrInput to specify the image or PDF to be read using (var Input = new OcrInput(@"images\Cherokee.png")) { // Perform OCR on the input document var Result = Ocr.Read(Input); // Extract all recognized text var AllText = Result.Text; // Display the recognized text Console.WriteLine(AllText); } } } // Import the IronOcr namespace using IronOcr; class Program { static void Main() { // Create an instance of the IronTesseract class var Ocr = new IronTesseract(); // Set the language for OCR to Cherokee Ocr.Language = OcrLanguage.Cherokee; // Use OcrInput to specify the image or PDF to be read using (var Input = new OcrInput(@"images\Cherokee.png")) { // Perform OCR on the input document var Result = Ocr.Read(Input); // Extract all recognized text var AllText = Result.Text; // Display the recognized text Console.WriteLine(AllText); } } } ' Import the IronOcr namespace Imports IronOcr Friend Class Program Shared Sub Main() ' Create an instance of the IronTesseract class Dim Ocr = New IronTesseract() ' Set the language for OCR to Cherokee Ocr.Language = OcrLanguage.Cherokee ' Use OcrInput to specify the image or PDF to be read Using Input = New OcrInput("images\Cherokee.png") ' Perform OCR on the input document Dim Result = Ocr.Read(Input) ' Extract all recognized text Dim AllText = Result.Text ' Display the recognized text Console.WriteLine(AllText) End Using End Sub End Class $vbLabelText $csharpLabel 這是代碼如何工作的簡短描述: IronTesseract: 創建 IronTesseract 類的實例以處理 OCR 操作。 OcrLanguage.Cherokee: 使用 OcrLanguage.Cherokee 屬性將語言設置為切羅基語,這會告訴 OCR 引擎識別切羅基語的文本。 OcrInput: 向 OcrInput 類提供一個輸入路徑,其中包含圖片或 PDF 文件。 Ocr.Read: 在 OCR 對象上調用 Read 方法,傳入輸入。 它執行 OCR 過程。 Result.Text: 從結果中提取識別出的文本,並將其存儲在 AllText 變數中以便進一步使用。 控制台輸出: 識別出的文本會被打印到控制台。