Reduce PDF File Size in IronOCR

This article was translated from English: Does it need improvement?
Translated
View the article in English

如何在 IronOCR 中縮小輸出 PDF 的檔案大小? IronOCR 會自動提升偵測到的低品質 (低於 150DPI) 輸入,以確保準確的讀取結果。 如果偵測到 DPI 低於 150,TargetDPI(預設為 225DPI)會定義渲染 PDF 的 DPI。 這與手動設定 `TargetDPI = 225` 相同。 若要縮小輸出檔案大小,您可以設定較低的 `TargetDPI` 值,這樣會產生較小的 PDF。 不過,設定得太低可能會影響 OCR 效能,因此必須保持平衡。 建議值為 96、72、48。 ```csharp // Example of reducing PDF output file size by lowering the DPI // Example 1: Reducing DPI to 96 using IronOcr; // Import IronOCR namespace var Ocr = new IronTesseract(); // Initialize IronTesseract for OCR operations using (var Input = new OcrInput()) // Create OCR input object { Input.TargetDPI = 96; // Set the desired DPI; 96 is used for smaller output size Input.AddPdf("example.pdf", "password"); // Add input PDF (with optional password) var Result = Ocr.Read(Input); // Perform OCR on the input Console.WriteLine(Result.Text); // Output recognized text to the console } // Example 2: Another way to set DPI var ocr = new IronTesseract(); using (var ocrInput = new OcrInput()) // Create a new OCR input object { ocrInput.AddPdf("img/Input.pdf", 72); // Add PDF with the specified DPI of 72 var ocrResult = ocr.Read(ocrInput); // Read and process the PDF ocrResult.SaveAsSearchablePdf(@"Output.pdf"); // Save result to a searchable PDF } ``` 若要停用自動升級,請使用 `TargetDPI = 0`。 這將使 IronOCR 依原樣讀取輸入檔案,忽略 TargetDPI 值。 如需詳細資訊,請參閱 API:[IronOCR API Reference](https://ironsoftware.com/csharp/ocr/object-reference/api/IronOcr.OcrInput.html?q=targetdpi#IronOcr_OcrInput_TargetDPI)

Curtis Chau
技術作家

Curtis Chau 擁有卡爾頓大學計算機科學學士學位,專注於前端開發,擅長於 Node.js、TypeScript、JavaScript 和 React。Curtis 熱衷於創建直觀且美觀的用戶界面,喜歡使用現代框架並打造結構良好、視覺吸引人的手冊。

除了開發之外,Curtis 對物聯網 (IoT) 有著濃厚的興趣,探索將硬體和軟體結合的創新方式。在閒暇時間,他喜愛遊戲並構建 Discord 機器人,結合科技與創意的樂趣。

準備好開始了嗎?
Nuget 下載 5,044,537 | 版本: 2025.11 剛剛發布