如何從流中讀取
串流數據指的是可以讀取或寫入的連續二進制信息流。在程式設計和資料處理的上下文中,串流被用來高效地處理可能太大以至於無法完全裝入記憶體的資料。串流允許資料以較小的、可管理的塊進行讀取或寫入。
IronOCR 的匯入方法也接受要匯入和讀取的圖像數據串流。這可以通過簡單地將串流數據傳入其中一個匯入方法來完成。該方法將處理匯入圖像所需的所有步驟。
如何從流中讀取
- 下載一個用於從流中讀取的C#庫
- 獲取並準備圖像流數據
- 將影像流傳遞給 OcrImageInput 構造函數導入圖像
- 使用
讀取
執行 OCR 的方法 - 通過指定裁剪區域來定義閱讀區域
立即開始在您的專案中使用IronPDF,並享受免費試用。
查看 IronOCR 上 Nuget 快速安裝和部署。已被下載超過800萬次,它正用C#改變OCR。
Install-Package IronOcr
請考慮安裝 IronOCR DLL 直接下載並手動安裝到您的專案或GAC表單: IronOcr.zip
手動安裝到您的項目中
下載DLL讀取流範例
首先,實例化 IronTesseract 類別以執行 OCR。使用 AnyBitmap 的 FromFile
方法匯入圖像檔案。這個 AnyBitmap 物件能夠將圖像數據轉換成流。接下來,使用 using
語句通過 AnyBitmap 物件的 GetStream
方法傳遞圖像流來創建 OcrImageInput 物件。最後,使用 Read
方法進行 OCR。
:path=/static-assets/ocr/content-code-examples/how-to/input-streams-read-streams.cs
using IronOcr;
using IronSoftware.Drawing;
// Instantiate IronTesseract
IronTesseract ocrTesseract = new IronTesseract();
// Read image file to AnyBitmap
AnyBitmap anyBitmap = AnyBitmap.FromFile("Potter.tiff");
// Import image stream
using var imageInput = new OcrImageInput(anyBitmap.GetStream());
// Perform OCR
OcrResult ocrResult = ocrTesseract.Read(imageInput);
Imports IronOcr
Imports IronSoftware.Drawing
' Instantiate IronTesseract
Private ocrTesseract As New IronTesseract()
' Read image file to AnyBitmap
Private anyBitmap As AnyBitmap = AnyBitmap.FromFile("Potter.tiff")
' Import image stream
Private imageInput = New OcrImageInput(anyBitmap.GetStream())
' Perform OCR
Private ocrResult As OcrResult = ocrTesseract.Read(imageInput)
指定掃描區域
為了在大圖像上提升性能並從特定區域獲取讀數,您可以使用 CropRectangle 類別。OcrImageInput 建構函數接受一個 CropRectangle 物件作為第二個參數。這允許您指定應讀取的圖像文檔區域。在下面的代碼範例中,我指定只讀取章節號碼和標題區域。
:path=/static-assets/ocr/content-code-examples/how-to/input-streams-read-specific-region.cs
using IronOcr;
using IronSoftware.Drawing;
using System;
// Instantiate IronTesseract
IronTesseract ocrTesseract = new IronTesseract();
// Read image file to AnyBitmap
AnyBitmap anyBitmap = AnyBitmap.FromFile("Potter.tiff");
// Specify crop region
Rectangle scanRegion = new Rectangle(800, 200, 900, 400);
// Add image
using var imageInput = new OcrImageInput(anyBitmap.GetStream(), ContentArea: scanRegion);
// Perform OCR
OcrResult ocrResult = ocrTesseract.Read(imageInput);
// Output the result to console
Console.WriteLine(ocrResult.Text);
Imports IronOcr
Imports IronSoftware.Drawing
Imports System
' Instantiate IronTesseract
Private ocrTesseract As New IronTesseract()
' Read image file to AnyBitmap
Private anyBitmap As AnyBitmap = AnyBitmap.FromFile("Potter.tiff")
' Specify crop region
Private scanRegion As New Rectangle(800, 200, 900, 400)
' Add image
Private imageInput = New OcrImageInput(anyBitmap.GetStream(), ContentArea:= scanRegion)
' Perform OCR
Private ocrResult As OcrResult = ocrTesseract.Read(imageInput)
' Output the result to console
Console.WriteLine(ocrResult.Text)