पायथन में पीआईएल या पिलो लाइब्रेरी का उपयोग टिंकर एप्लिकेशन में छवियों को संसाधित करने के लिए किया जाता है। हम पिलो का उपयोग छवियों को खोलने, उनका आकार बदलने और विंडो में प्रदर्शित करने के लिए कर सकते हैं। छवि का आकार बदलने के लिए, हम image_resize((चौड़ाई, ऊंचाई) **विकल्प) का उपयोग कर सकते हैं तरीका। आकार की गई छवि को बाद में लेबल विजेट के माध्यम से संसाधित और प्रदर्शित किया जा सकता है।
उदाहरण
आइए हम उस उदाहरण पर एक नज़र डालें जहां हम एक छवि खोलेंगे और लेबल विजेट के माध्यम से विंडो में प्रदर्शित करने के लिए उसका आकार बदलेंगे।
# Import the required libraries from tkinter import * from PIL import Image, ImageTk # Create an instance of tkinter frame or window win=Tk() # Set the size of the tkinter window win.geometry("700x350") # Load the image image=Image.open('download.png') # Resize the image in the given (width, height) img=image.resize((450, 350)) # Conver the image in TkImage my_img=ImageTk.PhotoImage(img) # Display the image with label label=Label(win, image=my_img) label.pack() win.mainloop()
आउटपुट
उपरोक्त कोड को चलाने से विंडो में एक आकार बदली हुई छवि प्रदर्शित होगी।