python使用fpdf2包和pdfrw报包新内容添加到已有的PDF页面上
Posted Data+Science+Insight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python使用fpdf2包和pdfrw报包新内容添加到已有的PDF页面上相关的知识,希望对你有一定的参考价值。
python使用fpdf2包和pdfrw包将新内容添加到已有的PDF页面上
目录
python使用fpdf2包和pdfrw包将新内容添加到已有的PDF页面上
#包安装
pip install fpdf2
pip install pdfrw
#新内容添加到已有的PDF页面上
import sys
from fpdf import FPDF
from pdfrw import PageMerge, PdfReader, PdfWriter
IN_FILEPATH = sys.argv[1]
OUT_FILEPATH = sys.argv[2]
ON_PAGE_INDEX = 1
UNDERNEATH = False # if True, new content will be placed underneath page (painted first)
def new_content():
fpdf = FPDF()
fpdf.add_page()
fpdf.set_font("helvetica", size=36)
fpdf.text(50, 50, "Hello!")
reader = PdfReader(fdata=bytes(fpdf.output()))
return reader.pages[0]
writer = PdfWriter(trailer=PdfReader(IN_FILEPATH))
PageMerge(writer.pagearray[ON_PAGE_INDEX]).add(new_content(), prepend=UNDERNEATH).render()
writer.write(OUT_FILEPATH)
fpdf2
is a library for PDF document generation in Python, forked from the unmaintained pyfpdf, itself ported from the php FPDF library.
参考:fpdf2
以上是关于python使用fpdf2包和pdfrw报包新内容添加到已有的PDF页面上的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 PDFrw 在 Python 中从 PDF 中提取数据