在 IronPDF 中排除 PDF 解析錯誤問題
This article was translated from English: Does it need improvement?
TranslatedView the article in English
當您嘗試使用IronPDF解析PDF文件時,您可能會遇到以下異常:
Unhandled exception. System.IO.IOException: PDF can not be opened as a PDF. May be an incorrect file type or a password is required.
Please check file for corruption or validity by a 3rd party at: https://www.pdf-online.com/osa/validate.aspx
當使用以下程式碼將 PDF 文件載入 PdfDocument
物件時,通常會發生此錯誤:
var pdf = PdfDocument.FromFile("Test.pdf");
var pdf = PdfDocument.FromFile("Test.pdf");
IRON VB CONVERTER ERROR developers@ironsoftware.com
VB C#
可能的原因
- 受密碼保護的PDF
- 擁有者密碼:引發此異常的最常見原因是PDF受到擁有者密碼保護。 當PDF設有所有者密碼時,它會限制某些操作,例如編輯或複製。 要載入此文件,您必須提供密碼。
- 損壞的PDF
- PDF 檔案可能已損壞或不是有效的 PDF 格式。 損壞的文件可能導致IronPDF在解析過程中失敗。
解決方案
處理密碼保護的PDF文件
如果您知道PDF的密碼,您可以將其傳遞給
PdfDocument.FromFile
。()`方法:
var pdf = PdfDocument.FromFile("test.pdf", "ownerpassword");
var pdf = PdfDocument.FromFile("test.pdf", "ownerpassword");
IRON VB CONVERTER ERROR developers@ironsoftware.com
VB C#
您也可以透過在Adobe Acrobat中檢查其屬性來驗證文件是否受到密碼保護。 有關識別PDF的安全狀態的更多資訊,請參考此文章.