投稿

2月 12, 2021の投稿を表示しています

GIF画像&TEXT表示

イメージ
from tkinter import * tk=Tk() canvas=Canvas(tk, width=600, height=400) canvas.pack() myImage=PhotoImage(file='tenor.gif') canvas.create_image(0,0,anchor=NW, image=myImage) canvas.create_text(200,350,text='gif画像のみ読み込めます。',font=('Times',20))

画像表示 matplotlib

イメージ
source code import matplotlib.pyplot as plt import matplotlib.image as mpimg img = mpimg.imread('mydog2020.PNG') imgplot = plt.imshow(img) plt.show()