文檔首頁>>Spire.PDF教程-文檔操作>>Spire.PDF 教程:從加密的PDF文檔中刪除密碼
Spire.PDF 教程:從加密的PDF文檔中刪除密碼
使用Spire.PDF for .NET,我們可以輕松地加密PDF文檔,同時我們還可以使用Spire.PDF從C#和VB.NET中的加密PDF文檔中刪除密碼,我們需要通過調(diào)用方法PdfDocument.LoadFromFile(string filename,string password)加載加密的PDF文件,然后將密碼設(shè)置為空,以刪除密碼。
首先,用用戶密碼查看PDF:
Step 1:加載受密碼保護的PDF文檔。
PdfDocument pdf = new PdfDocument(); pdf.LoadFromFile("Sample.pdf", "e-iceblue");
Step 2:將密碼設(shè)置為空,以刪除用戶密碼。
pdf.Security.UserPassword = string.Empty;
Step 3:將文檔保存到文件。
pdf.SaveToFile("Decrypted.pdf");
從PDF文檔中刪除密碼后的有效屏幕截圖:
完整代碼:
[C#]
PdfDocument pdf = new PdfDocument(); pdf.LoadFromFile("Sample.pdf", "e-iceblue"); pdf.Security.UserPassword = string.Empty; pdf.SaveToFile("Decrypted.pdf");
[VB.NET]
Dim pdf As New PdfDocument() pdf.LoadFromFile("Sample.pdf", "e-iceblue") pdf.Security.UserPassword = String.Empty pdf.SaveToFile("Decrypted.pdf")