2017-04-18 10 views
0

PythonでPDFファイルを暗号化する方法はありますか? 1つの可能性はPDFを圧縮することですが、もう1つはありますか?あなたの助け ため おかげで フェリックスPythonでPDFを暗号化する

答えて

1

あなたはPyPDF2を使用することができますについて:詳細については

from pyPDF2 import PdfFileReader, PdfFileWriter 
with open("input.pdf", "rb") as in_file: 
    input_pdf = PdfFileReader(in_file) 

output_pdf = PdfFileWriter() 
output_pdf.appendPagesFromReader(input_pdf) 
output_pdf.encrypt("password") 

with open("output.pdf", "wb") as out_file: 
    output_pdf.write(out_file) 

PdfFileWriterdocsをチェックしてください。

関連する問題