简体   繁体   English

使用Acrobat“添加允许对Adobe Reader进行注释”

[英]“Adding Enable for commenting Adobe Reader” using Acrobat

I am using iTextSharp to create on PDF document, later i want to add "Adding Enable for commenting Adobe Reader" using Acrobat, but i getting error as 我正在使用iTextSharp在PDF文档上创建,后来我想使用Acrobat添加“为Adobe Reader添加评论功能”,但由于出现错误

You do not have permission to write to this file 您无权写入此文件

Here my code used to create PDF file: 这是我用来创建PDF文件的代码:

using (FileStream FS = new FileStream(dPDFFile_temp, FileMode.Create, FileAccess.Write, FileShare.None))
{
    using (Document Doc = new Document())
    {
        using (PdfCopy writer = new PdfCopy(Doc, FS))
        {
            Doc.Open();

            for (int i = 1; i <= R.NumberOfPages; i++)
            {
                writer.AddPage(writer.GetImportedPage(R, i));
            }
            Doc.Close();
        }
    }
}

You are asking something that is impossible: see http://support.itextpdf.com/node/24 您正在问不可能的事情:请参阅http://support.itextpdf.com/node/24

Making a PDF reader-enabled requires a private key that is owned by Adobe. 使PDF阅读器启用需要Adobe拥有的私钥。 Any third party other than Adobe using that key, would be in violation with the law. 除Adobe之外,使用该密钥的任何第三方都将违反法律。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用Adobe Acrobat Reader打开pdf并跳到书签 - Open pdf with Adobe Acrobat Reader and jump to bookmark 从Adobe Acrobat Reader和DejaVu Reader进程中提取当前页面? - Extract current page from Adobe Acrobat Reader and DejaVu Reader processes? 如何使用Acrobat Reader启用添加文本工具在Winforms中添加文本 - how to enable Add Text Tool Using Acrobat reader Add text in winforms 检查是否安装了 Adobe Acrobat Reader - WebBrowser 控件中的 pdf - Check if Adobe Acrobat Reader installed - pdf in WebBrowser control 在Adobe Reader中对pdf图层(使用iTextsharp创建)添加注释 - Adding comment on pdf layer (created using iTextsharp) in Adobe reader 使用 Adob​​e Acrobat 以编程方式打印到文件 - Print to File Programmatically using Adobe Acrobat Adobe Acrobat Reader 和 Foxit 阅读器显示 PDF Signature Valid 但 iText7 另有说明 - Adobe Acrobat Reader and Foxit reader show PDF Signature Valid but iText7 says otherwise 编辑 PDF 后,Adobe Acrobat Reader DC 不会将当前文件夹作为另存为目标 - After editing a PDF, Adobe Acrobat Reader DC does not give the Current Folder as a Save As destination 即使CreateNoWindow为true,PdfFilePrinter.Print仍会启动Adobe Acrobat阅读器 - PdfFilePrinter.Print still launches the Adobe Acrobat reader even if CreateNoWindow is true 如何在安装过程中检测计算机(不仅仅是浏览器)中的 Adobe Acrobat Reader 安装? - how to detect Adobe Acrobat Reader installation in computer (not just browser) during Setup?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM