我需要使用Python编辑pdf文件中的一些信息。有可用的图书馆吗?我尝试过“ PyPDF2”和“ Reportlab”,但是没有运气。
答案 0 :(得分:1)
尝试类似的方法:
from PyPDF2 import PdfFileReader, PdfFileWriter
fin = open('source.pdf', 'rb')
reader = PdfFileReader(fin)
writer = PdfFileWriter()
或访问以下任一站点: https://www.binpress.com/manipulate-pdf-python/
https://www.blog.pythonlibrary.org/2018/06/06/creating-and-manipulating-pdfs-with-pdfrw/
如果您的问题更多是一个开放式问题,请告诉我是否有帮助。