有谁知道如何将 Matplotlib 图保存为 *.tiff?似乎 Python 不支持这种格式,而期刊经常要求这种格式。
我正在添加一些最少的代码:
# -*- coding: utf-8 -*-
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np
# fig setup
fig = plt.figure(figsize=(5,5), dpi=300)
ax = fig.gca(projection='3d')
ax.set_xlim([-1,1])
ax.set_ylim([-1,1])
ax.set_zlim([-1,1])
ax.axes.xaxis.set_ticklabels([])
ax.axes.yaxis.set_ticklabels([])
ax.axes.zaxis.set_ticklabels([])
# draw a surface
xx, yy = np.meshgrid(range(-1,2), range(-1,2))
zz = np.zeros(shape=(3,3))
ax.plot_surface(xx, yy, zz, color='#c8c8c8', alpha=0.3)
ax.plot_surface(xx, zz, yy, color='#b6b6ff', alpha=0.2)
# draw a point
ax.scatter([0],[0],[0], color='b', s=200)
这有效:
fig.savefig('3dPlot.pdf')
但这不会:
fig.savefig('3dPlot.tif')
原文由 striatum 发布,翻译遵循 CC BY-SA 4.0 许可协议
这很棒!感谢 ot 马丁埃文斯。但是,对于那些希望在
Python3.x
实现它的人来说,小修复(因为cStringIO
模块不可用;我宁愿使用BytesIO
)