matplotlib.pyplot画图完美调整图片白边大小

1、原图片

matplotlib.pyplot画图完美调整图片白边大小_第1张图片

2、去除白边后效果

matplotlib.pyplot画图完美调整图片白边大小_第2张图片

3、设置方法

可以通过调节 pad_inches 的值调整白边的大小。

import matplotlib.pyplot as plt

# 设置数据
x = [0, 50, 100, 150, 200, 250, 300, 350, 400, 450, 500, 550]
y = [0, 22, 48, 67, 87, 102, 119, 140, 160, 179, 211, 238]
# 设置图片大小
plt.figure(figsize=(12.5, 6.4), dpi=80)
# 设置折线图
plt.plot(x, y, label='x', linewidth=0.8)

# 设置图片白边大小,保存图片的时候设置下
plt.savefig('chart.png', bbox_inches='tight', pad_inches=0.02)

你可能感兴趣的:(Python3,python,pyplot,图片白边)