gpt4 book ai didi

java - 试图保护 PDF (iText) 试图禁止用户复制 pdf 的内容

转载 作者:行者123 更新时间:2023-11-29 06:41:43 26 4
gpt4 key购买 nike

下面是我的代码。我的目标是创建一个 PDF,最终用户可以在其中做任何他们想做的事情,除了复制文本(选择文本并复制到记事本)。谁能解释一下第 18 行应该有什么代码?我允许打印但不允许 ALLOW_COPY)

我的印象是下面的代码足以限制用户这样做,但“事实上”他们能够复制所选文本并将内容粘贴到记事本中。

非常感谢!

package com.itext;

import java.io.FileOutputStream;
import com.itextpdf.text.Document;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.pdf.PdfWriter;
import java.io.IOException;
import com.itextpdf.text.DocumentException;

public class ProtectMePdf
{
public static void main(String[] args) throws IOException, DocumentException
{
Document document = new Document();
PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("/Users/adhg/protectMe.pdf"));

//LINE 18: what's wrong with this line? - if you run the code you will be able to copy the selected text.
writer.setEncryption(null, null, PdfWriter.ALLOW_PRINTING, PdfWriter.STANDARD_ENCRYPTION_128);


writer.createXmpMetadata();
document.open();
document.add(new Paragraph("Protect me! if you can do copy-paste of this message to a notepad = NO GOOD :-("));
document.close();
}
}

最佳答案

接受的答案是错误的。事实上,您可以禁用复制并允许打印。这非常简单,您只需要取消权限即可:

writer.setEncryption(null, null,  ~(PdfWriter.ALLOW_COPY), PdfWriter.STANDARD_ENCRYPTION_128);

关于java - 试图保护 PDF (iText) 试图禁止用户复制 pdf 的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11067159/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com