pip install Pillow
打開,顯示以及保存圖像:python
from PIL import Image img = Image.open('lena.png) #open the image img.show() #show the image img.save('lena.jpg) #save the image
pip install matplotlib
打開,顯示以及保存圖像:code
# 一、顯示圖片 import matplotlib.pyplot as plt #plt 用於顯示圖片 import matplotlib.image as mpimg #mpimg 用於讀取圖片 import numpy as np lena = mpimg.imread('lena.png') # 此時 lena 就已是一個 np.array 了,能夠對它進行任意處理 plt.imshow(lena) # 顯示圖片 plt.axis('off') # 不顯示座標軸 plt.show() #五、保存 matplotlib 畫出的圖像 plt.savefig('lena_new_sz.png')