要在Python中讀取PNG圖像,可以使用Pillow庫。
首先,確保已經安裝了Pillow庫。可以使用以下命令進行安裝:
pip install pillow
然后,可以使用以下代碼讀取PNG圖像:
from PIL import Image
# 打開圖像文件
image = Image.open('image.png')
# 顯示圖像大小和格式
print('圖像大小:', image.size)
print('圖像格式:', image.format)
# 顯示圖像
image.show()
# 關閉圖像
image.close()
在這個例子中,首先導入了Pillow庫的Image模塊。然后,使用open()函數打開了名為’image.png’的PNG圖像文件。可以使用size屬性獲取圖像的大小,使用format屬性獲取圖像的格式。最后,使用show()函數顯示圖像,使用close()函數關閉圖像。
請將代碼中的’image.png’替換為你要讀取的PNG圖像文件的路徑。