I want to cycle through top to bottom instead of left to right on an image. (0,0 starts from top left)
    for y in range(image.height): # getting pixels
        for x in range(image.width):
             pixel = image.get_pixel(y,x) #invert coordinates to move down
I tried inverting the coordinates but it doesn't work on images that are not square.
 
    