When I try to execute the program below:
import image
img = image.Image("LutherBellPic.jpg")
print(img.getWidth())
print(img.getHeight())
p = img.getPixel(45, 55)
print(p.getRed(), p.getGreen(), p.getBlue())
I keep receiving the following error:
AttributeError: module 'image' has no attribute 'Image'