是否有任何python模块使用我们可以创建一个新的pdf文件或修改只有读取权限的现有pdf文件。我想为pdf文件禁用“另存为”和“另存为其他格式”。(DRM的东西。)
答案 0 :(得分:0)
我不确定这是可移植的,但你可以使用os.chmod:
import os
from stat import S_IREAD, S_IRGRP, S_IROTH
filename = "yourfile.pdf"
# Open the file and write your stuff to the file etc...
os.chmod(filename, S_IREAD|S_IRGRP|S_IROTH)