当前位置:   article > 正文

python pdf加密以及校验pdf是否是加密的_python判断文件是否加密

python判断文件是否加密
  1. 使用PyMuPDF
pip install PyMuPDF
  • 1
import fitz  # this is PyMuPDF

# doc1 = "IOT.pdf"
with open(r"C:\Users\84977\Desktop\test2.pdf", 'r+') as doc1:
    doc = fitz.Document(doc1)

# the document should be password protected


print(doc.isEncrypted)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  1. 使用PyPDF3
pip install PyPDF3
  • 1
import PyPDF3
pdffile= open('IOT.pdf', 'rb')

pdfreader= PyPDF3.PdfFileReader(pdffile)

try:
    # print decryption outcome as 1 if successful and 0 otherwise
    pdfreader.decrypt('password')
except NotImplementedError as errMsg:
    print(pdfreader, 'can not be decrypted on error message', errMsg)
    pdffile.close()

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  1. pyfdf2
pip install PyPDF2
  • 1
# -*- coding: utf-8 -*-
import PyPDF2

# 打开PDF文件
with open(r'C:\Users\84977\Desktop\加密的pdf.pdf', 'rb') as pdf_file:
    # 创建一个PdfFileReader对象
    pdf_reader = PyPDF2.PdfFileReader(pdf_file)

    # 确认PDF是否受密码保护
    if pdf_reader.isEncrypted:
        print("PDF文件受密码保护")
    else:
        print("PDF文件没有密码保护")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/319214
推荐阅读
相关标签
  

闽ICP备14008679号