In this program, we will rotate an image using the pillow library. The rotate() function in the Image class takes in angle of rotation.
Original Image
Algorithm
Step1: Import Image class from Pillow. Step 2: Open the image. Step 3: Rotate the image. Step 4: Display the output.
Example Code
from PIL import Image im = Image.open('testimage.jpg') im.rotate(45).show()