इस कार्यक्रम में, हम पिलो लाइब्रेरी का उपयोग करके एक छवि को घुमाएंगे। इमेज क्लास में रोटेट () फंक्शन रोटेशन का कोण लेता है।
मूल चित्र
एल्गोरिदम
Step1: Import Image class from Pillow. Step 2: Open the image. Step 3: Rotate the image. Step 4: Display the output.
उदाहरण कोड
from PIL import Image im = Image.open('testimage.jpg') im.rotate(45).show()
आउटपुट