Computer >> Computer tutorials >  >> Programming >> Python

Rotating an image using Pillow library


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

Rotating an image using Pillow library

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()

Output

Rotating an image using Pillow library