“Hacer que la imagen se ajuste a tinter” Código de respuesta

Cómo rezize Image en Python Tkinter

from tkinter import *
from PIL import ImageTk, Image
root=Tk()

image = Image.open('path_to_your_image.png')
# The (450, 350) is (height, width)
image = image.resize((450, 350), Image.ANTIALIAS)
my_img = ImageTk.PhotoImage(image)
my_img = Label(image = my_img)
my_img.pack()

root.mainloop()
MrStonkus

Hacer que la imagen se ajuste a tinter

from tkinter import *
from PIL import ImageTk, Image
root=Tk()

image = Image.open('path_to_your_image.png')
# The (450, 350) is (height, width)
image = image.resize((450, 350), Image.ANTIALIAS)
my_img = ImageTk.PhotoImage(image)
# Slightly modified, this works for me
my_lbl = Label(image = my_img)
my_lbl.pack()

root.mainloop()
Inquisitive Ibis

Respuestas similares a “Hacer que la imagen se ajuste a tinter”

Preguntas similares a “Hacer que la imagen se ajuste a tinter”

Más respuestas relacionadas con “Hacer que la imagen se ajuste a tinter” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código