python [使用PyPDF2加密PDF文件]使用Python加密PDF文件。 #蟒蛇

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python [使用PyPDF2加密PDF文件]使用Python加密PDF文件。 #蟒蛇相关的知识,希望对你有一定的参考价值。

import os
from PyPDF2 import PdfFileReader, PdfFileWriter

folder = "C:/Users/Folder" # Directory containing files
in_file_name = "input.pdf" # Name of PDF to encrypt
out_file_name = "output (ENCRYPTED).pdf" # Name of output PDF
pw = "password" # Password to use

os.chdir(folder)

infile = file(in_file_name,"rb") # Read in PDF file
reader = PdfFileReader(infile)
writer = PdfFileWriter()

writer.appendPagesFromReader(reader)
writer.encrypt(pw) # Put passsowrd here
output_pdf = file(out_file_name, "wb")
writer.write(output_pdf)

print("Write successful!")

以上是关于python [使用PyPDF2加密PDF文件]使用Python加密PDF文件。 #蟒蛇的主要内容,如果未能解决你的问题,请参考以下文章

日常从批量合并 PDF 到 PyPDF2 的使用

如何从python解码pdf加密文件

实用脚本!利用 Python 对 PDF 进行加密解密操作,代码拿走就用!

实用脚本!利用 Python 对 PDF 进行加密解密操作,代码拿走就用!

Python应用PDF处理-pypdf2

使用 PyPDF2 从 PDF 文件中提取文本