загрузить PNG на Python

import imageio

im = imageio.imread('my_image.png')
print(im.shape)
Real Raccoon