I have a photo on my disk and I want to rotate it clockwise in 90 degrees. I'm trying to use PIllow as described here: https://pillow.readthedocs.io/en/stable/handbook/tutorial.html#geometrical-transforms
pill_img = Image.open(abs_img_src)
pill_img.rotate(90)
But nothing changes. Did I miss something?



