17

我在我的过程中使用 C# 代码创建一个 pdf 文档。我需要使用一些标准密码(如“123456”或某个帐号)来保护文档。我需要在没有任何参考 dll(如 pdf writer)的情况下执行此操作。

我正在使用 SQL Reporting Services 报告生成 PDF 文件。

有没有最简单的方法。

4

3 回答 3

29

我在我的过程中使用 C# 代码创建一个 pdf 文档

您是否使用某个库来创建此文档?pdf 规范(8.6MB) 相当大,如果不使用第三方库,所有涉及 pdf 操作的任务都可能很困难。使用免费和开源的itextsharp库对您的 pdf 文件进行密码保护和加密非常简单:

using (Stream input = new FileStream("test.pdf", FileMode.Open, FileAccess.Read, FileShare.Read))
using (Stream output = new FileStream("test_encrypted.pdf", FileMode.Create, FileAccess.Write, FileShare.None))
{
    PdfReader reader = new PdfReader(input);
    PdfEncryptor.Encrypt(reader, output, true, "secret", "secret", PdfWriter.ALLOW_PRINTING);
}
于 2008-12-16T10:14:52.647 回答
1

如果不使用 PDF 库,将很难做到这一点。基本上,您需要自己开发这样的库。

在 PDF 库的帮助下,一切都变得简单多了。以下示例展示了如何使用Docotic.Pdf 库轻松保护文档:

public static void protectWithPassword(string input, string output)
{
    using (PdfDocument doc = new PdfDocument(input))
    {
        // set owner password (a password required to change permissions)
        doc.OwnerPassword = "pass";

        // set empty user password (this will allow anyone to
        // view document without need to enter password)
        doc.UserPassword = "";

        // setup encryption algorithm
        doc.Encryption = PdfEncryptionAlgorithm.Aes128Bit;

        // [optionally] setup permissions
        doc.Permissions.CopyContents = false;
        doc.Permissions.ExtractContents = false;

        doc.Save(output);
    }
}

免责声明:我为图书馆的供应商工作。

于 2012-04-29T18:52:36.113 回答
0

如果有人正在寻找 IText7 参考。

    private string password = "@d45235fewf";
    private const string pdfFile = @"C:\Temp\Old.pdf";
    private const string pdfFileOut = @"C:\Temp\New.pdf";

public void DecryptPdf()
{
        //Set reader properties and password
        ReaderProperties rp = new ReaderProperties();
        rp.SetPassword(new System.Text.UTF8Encoding().GetBytes(password));

        //Read the PDF and write to new pdf
        using (PdfReader reader = new PdfReader(pdfFile, rp))
        {
            reader.SetUnethicalReading(true);
            PdfDocument pdf = new PdfDocument(reader, new PdfWriter(pdfFileOut));
            pdf.GetFirstPage(); // Get at the very least the first page
        }               
} 
于 2018-05-10T21:26:51.733 回答