IronOCR 語言 阿拉伯語 Arabic OCR in C# and .NET 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 Other versions of this document: بالعربية 其他125種OCR語言 IronOCR 是一個 C# 軟體組件,允許 .NET 程式員從 126 種語言的圖像和 PDF 文件中讀取文本,包括阿拉伯文。 它是針對 .NET 開發人員專門開發的一個 Tesseract 的高級分支,在速度和準確性方面經常優於其他 Tesseract 引擎。 IronOcr.Languages.Arabic 的內容 此套件包含 .NET 的 108 種 OCR 語言: 阿拉伯文 ArabicBest ArabicFast ArabicAlphabet ArabicAlphabetBest ArabicAlphabetFast 下載 阿拉伯文語言包 style='white-space:default'>[العربية] 以 Zip 格式下載 使用 NuGet 安裝 安裝 我們首先要做的是將 Arabic OCR 套件安裝到您的 .NET 專案中。 Install-Package IronOCR.Languages.Arabic 代碼示例 這個 C# 代碼範例從圖像或 PDF 文件中讀取阿拉伯文字。 // Import the IronOcr namespace to use its classes. using IronOcr; // Create a new instance of the IronTesseract class. var Ocr = new IronTesseract(); // Set the OCR language to Arabic. Ocr.Language = OcrLanguage.Arabic; // Use a using statement to ensure that resources are disposed of correctly. using (var Input = new OcrInput(@"images\Arabic.png")) { // Perform OCR on the input image or document. var Result = Ocr.Read(Input); // Retrieve all recognized text from the document. var AllText = Result.Text; // Optionally, you can output the text to the console or use it otherwise. // Console.WriteLine(AllText); } // Import the IronOcr namespace to use its classes. using IronOcr; // Create a new instance of the IronTesseract class. var Ocr = new IronTesseract(); // Set the OCR language to Arabic. Ocr.Language = OcrLanguage.Arabic; // Use a using statement to ensure that resources are disposed of correctly. using (var Input = new OcrInput(@"images\Arabic.png")) { // Perform OCR on the input image or document. var Result = Ocr.Read(Input); // Retrieve all recognized text from the document. var AllText = Result.Text; // Optionally, you can output the text to the console or use it otherwise. // Console.WriteLine(AllText); } ' Import the IronOcr namespace to use its classes. Imports IronOcr ' Create a new instance of the IronTesseract class. Private Ocr = New IronTesseract() ' Set the OCR language to Arabic. Ocr.Language = OcrLanguage.Arabic ' Use a using statement to ensure that resources are disposed of correctly. Using Input = New OcrInput("images\Arabic.png") ' Perform OCR on the input image or document. Dim Result = Ocr.Read(Input) ' Retrieve all recognized text from the document. Dim AllText = Result.Text ' Optionally, you can output the text to the console or use it otherwise. ' Console.WriteLine(AllText); End Using $vbLabelText $csharpLabel