Python图片保存之去除空白区域时间:2024-05-18 19:44:54 bbox_inches的使用 使用pyplot.savefig中bbox_inches可以去除空白区域。 实例 from matplotlib import pyplot as plt 不使用bbox_inches参数: 可以看出图片中有大片的空白区域 使用bbox_inches参数: 成功的去除了空白区域!