How to load .bmp file into BitmapImage class Tkinter python
问题 I'm unable to find any way to load .bmp file into Tkinter() so that I can use it in a canvas widget!Plz help me! from Tkinter import * from PIL import Image import ImageTk import tkFileDialog import tkMessageBox root=Tk() class lapp: def __init__(self,master): w=Canvas(root,width=300,height=300) w.pack() p=Image.open("001.bmp") tkimage=ImageTk.PhotoImage(p) w.creat_image(0,0,image=tkimage) App=lapp(root) root.mainloop() Its not showing any image on the canvas, its just blank! Btw I'm using