我正在尝试从Python生成的图中生成PDF,到目前为止我一直在使用PdfPages。关于PdfPages语法有很多信息,但我似乎无法弄清楚如何将我的情节放在一个页面上 - 它总是为每个图像创建一个页面。
另外,我想在底部添加时间戳,但pdf.attach_note()
似乎没有出现。
我当前的代码使用我的2张图片plot1
和plot2
生成PDF,并将其保存为不带时间戳的2页PDF,保存为timestamp
。
with PdfPages('{0}.pdf'.format(timestamp)) as pdf:
fig = plot1
pdf.savefig(fig)
fig2 = plot2
pdf.savefig(fig2)
pdf.attach_note(timestamp, positionRect=[0,0,100,100])
plt.close()
如何将此更改为制作包含两个图像的1页PDF,plot1
和plot2
以及底部的文字timestamp
?