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

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

Updated on: 17-Mar-2021

710 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements