w3schools standard libreria library instalar docs python tkinter

libreria - standard library tkinter python



¿Por qué PhotoImage se pone lento? (2)

Intente construir una matriz de colores 2D y llame a put con esa matriz como parámetro.

Me gusta esto:

import tkinter as tk img = tk.PhotoImage(file="myFile.gif") # "#%02x%02x%02x" % (255,0,0) means ''red'' line = ''{'' + '' ''.join(["#%02x%02x%02x" % (255,0,0)] * 1000) + ''}'' img.put('' ''.join([line] * 1000))

Al manipular objetos de fotoimagen, con:

import tkinter as tk img = tk.PhotoImage(file="myFile.gif") for x in range(0,1000): for y in range(0,1000): img.put("{red}", (x, y))

la operación put lleva mucho tiempo. ¿Hay un método más rápido para hacer esto?


Use un cuadro delimitador:

from Tkinter import * root = Tk() label = Label(root) label.pack() img = PhotoImage(width=300,height=300) data = ("{red red red red blue blue blue blue}") img.put(data, to=(20,20,280,280)) label.config(image=img) root.mainloop()