
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Rotate 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
Advertisements