gpt4 book ai didi

python - 在 Matplotlib 中如何防止图像出现在屏幕上? Python

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:23:26 24 4
gpt4 key购买 nike

我有一个快速的问题想解决。我有一个脚本可以处理大约 2000 个文件、生成图像并将图像保存为 PDF 或图像格式。但我无法阻止图像出现在屏幕上。我阅读和研究但无法解决我的问题。我假设我在 Matplotlib 中设置的后端有问题。但我不是这方面的专家。我尝试按照网站上的说明使用 matplotlib.use('Agg') 但它没有帮助。所以,如果你能帮我找出问题所在,我将不胜感激。非常感谢!

系统:Ubuntu 13.04Matplotlib:1.2.1Python 2.7.4

这是导入部分脚本的样子:

from matplotlib.backends.backend_pdf import PdfPages
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
from matplotlib.ticker import MultipleLocator, AutoMinorLocator, ScalarFormatter
from pylab import *

编辑:发布更多代码。这只是其中的一部分。我有一个功能:

def plot_vi(t, s1, s2, s3, charttitle, chartnote, celllocation, filename):

fig = plt.figure(figsize=(16, 12))
ax1 = fig.add_subplot(111)
l1, = ax1.plot(t, s1, 'r-', linewidth=0.7)
l2, = ax1.plot(t, s3, '-', linewidth=0.7, color='#00ff00')
ax1.set_xlabel('Test Time (hours)')
# Make the y-axis label and tick labels match the line color.
ax1.set_ylabel('Voltage (Volts)', color='r')
for tl in ax1.get_yticklabels():
tl.set_color('r')

ax2 = ax1.twinx()
l3, = ax2.plot(t, s2, 'b-', linewidth=0.7)
ax2.set_ylabel('Current (Amps)', color='b')
for tl in ax2.get_yticklabels():
tl.set_color('b')

minorLocator = AutoMinorLocator()
ax2.xaxis.set_minor_locator(minorLocator)
majorLocator = MultipleLocator(1)
minorLocator = MultipleLocator(0.2)
ax2.yaxis.set_major_locator(majorLocator)
ax2.yaxis.set_minor_locator(minorLocator)
majorLocator = MultipleLocator(0.1)
minorLocator = MultipleLocator(0.02)
ax1.yaxis.set_major_locator(majorLocator)
ax1.yaxis.set_minor_locator(minorLocator)
ax1.xaxis.grid(color='gray')
ax1.yaxis.grid(color='gray')
lgd = legend([l1, l3, l2], ['voltage', 'current', 'auxiliary'], bbox_to_anchor=(1.05, 1), loc=2)

title(charttitle, fontsize=16)
figtext(0.01, 0.027, chartnote, color='#707070')
figtext(0.01, 0.01, celllocation, color='#707070')
fig.subplots_adjust(right=0.85)
plt.savefig(filename, dpi=100)plot_vi(t, s1, s2, s3, ChartTitle, ChartNote, CellLocation, PLOTFILENAME)
plt.savefig(pp, format='pdf')

然后我运行了那个函数:

 plot_vi(t, s1, s2, s3, ChartTitle, ChartNote, CellLocation, PLOTFILENAME)
plt.savefig(pp, format='pdf')

最佳答案

可能在您的脚本中有一个地方您说plt.show()。将其替换为 plt.savefig('fig-name.pdf'),其中 fig-name.pdf 是您要另存为的名称。如果要另存为.png,只需将扩展名更改为.png

这是一些 documentation关于将多个图像保存为 pdf;它也可以帮助您。

关于python - 在 Matplotlib 中如何防止图像出现在屏幕上? Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17449466/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com