欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python 画图的使用技巧

程序员文章站 2022-03-20 13:09:44
...

1. 读取、保存图片

img = plt.imread(img_path)  #读取图像
plt.imshow(cimg)  #绘制图像
plt.savefig(file_path+'/result/{}-{}/{}.jpg'.format(style_name, content_name, '内容图')) # 保存图像

2