Je fais de l'édition d'images avec la librairie PIL. Le problème est que je ne veux pas sauvegarder l'image à chaque fois sur mon disque dur pour la visualiser dans Explorer. Existe-t-il un petit module qui me permette simplement de créer une fenêtre et d'afficher l'image ?
Réponses
Trop de publicités?
Apostolos
Points
847
Vous pouvez afficher une image dans votre propre fenêtre en utilisant Tkinter, sans dépendre des visionneurs d'images installés dans votre système :
import Tkinter as tk
from PIL import Image, ImageTk # Place this at the end (to avoid any conflicts/errors)
window = tk.Tk()
#window.geometry("500x500") # (optional)
imagefile = {path_to_your_image_file}
img = ImageTk.PhotoImage(Image.open(imagefile))
lbl = tk.Label(window, image = img).pack()
window.mainloop()
Pour Python 3, remplacez import Tkinter as tk
con import tkinter as tk
.
Carson Arucard
Points
334
Oui, PIL.Image.Image.show() facile et pratique.
Mais si vous voulez assembler l'image et faire des comparaisons, je vous suggère d'utiliser la fonction matplotlib . Voici un exemple,
import PIL
import PIL.IcoImagePlugin
import PIL.Image
import matplotlib.pyplot as plt
with PIL.Image.open("favicon.ico") as pil_img:
pil_img: PIL.IcoImagePlugin.IcoImageFile # You can omit. It helps IDE know what the object is, and then it will hint at the method very correctly.
out_img = pil_img.resize((48, 48), PIL.Image.ANTIALIAS)
plt.figure(figsize=(2, 1)) # 2 row and 1 column.
plt.subplots_adjust(hspace=1) # or you can try: plt.tight_layout()
plt.rc(('xtick', 'ytick'), color=(1, 1, 1, 0)) # set xtick, ytick to transparent
plt.subplot(2, 1, 1), plt.imshow(pil_img)
plt.subplot(2, 1, 2), plt.imshow(out_img)
plt.show()
pkumar90
Points
21
- Réponses précédentes
- Plus de réponses