以python代码,写一个使用matlibplot生成不带画布、坐标轴、刻度等信息,只有本身图片的代码
时间: 2024-06-04 16:10:26 浏览: 157
Python使用matplotlib简单绘图示例
5星 · 资源好评率100%
import matplotlib.pyplot as plt
import numpy as np
# 生成数据
x = np.arange(0, 10, 0.1)
y = np.sin(x)
# 生成图片
fig = plt.figure(frameon=False)
ax = fig.add_axes([0, 0, 1, 1])
ax.axis('off')
ax.plot(x, y)
# 保存图片
plt.savefig('image.png', dpi=300, bbox_inches='tight', pad_inches=0)
# 显示图片
plt.show()
阅读全文