python3.6을 사용하여 png 이미지를 gif 이미지로 변경하고 싶습니다. 어떻게해야합니까? 당신은 PNG로 직접 이미지를로드 베개의 ImageTk
을 사용할 수 있습니다어떻게 png 이미지를 gif 이미지로 만들 수 있습니까?
tk = Tk()
tk.configure(bg = 'white')
tk.title("SearchKeyWord V2.0")
canvas = Canvas(tk,width = 880, height = 550,bd = 0,highlightthickness = 0)
canvas.pack()
txt = Entry(tk)
txt.place(relx = .9,rely = .3,anchor = "c")
LOGO = PhotoImage(file = 'SKW-LOGO.gif')
button_1 = PhotoImage(file = 'button.gif')
button_2 = PhotoImage(file = 'button_news_1d.gif')
button_3 = PhotoImage(file = 'button_news_1w.gif')
button = tkinter.Button(tk,image = button_1,command = search)
button_news_1d = tkinter.Button(tk,image = button_2)
button_news_1w = tkinter.Button(tk,image = button_3)
canvas.create_image(0,0,anchor = NW, image = LOGO)
button.place(relx=.8, rely=.5, anchor="c")
button_news_1d.place(relx =.8,rely = .7, anchor = "c")
button_news_1w.place(relx =.8,rely = .9, anchor = "c")
tk.update()
tk.mainloop()
해보십시오 PIL 또는 베개 https://python-pillow.org – jtlz2