1

PyQt MainWindow に表示しているバー プロットと追加データがあります。このプロットとデータを紙に印刷できるようにする必要がありますが、その方法がわかりません。

を使用してプロットを pdf に保存し、プリンタに送信する方法は知っていますprint_figureが、追加データをプロットと同じページに配置することはできません。私は周りを見回しましたが、その下にデータが印刷されたプロットを 1 ページにまとめて表示する方法を見つけることができません。助言がありますか?

4

1 に答える 1

1
text_str = '''Some additional very long text
that spans over a few lines and is
very very very very very boring
but it's sole purpose is demonstration
so we can live with that'''

# make figure and axes
fig, ax = plt.subplots(1, 1)
# shove the bottom of the axes up
fig.subplots_adjust(bottom=.3)
# add the text
fig.text(0, 0, text_str, va='bottom')
# force draw
plt.draw()

ここに画像の説明を入力

于 2013-08-20T19:13:03.090 に答える