I am trying to read a png image in python. The imread function in scipy is being deprecated and they recommend using imageio
png
imread
scipy
imageio
If you just want to read an image in Python using the specified libraries only, I will go with matplotlib
matplotlib
In matplotlib :
import matplotlib.image read_img = matplotlib.image.imread('your_image.png')