我已经尝试过使用jpeg,gif,jpg,png和偶斜杠但没有输出的代码,请帮忙
from tkinter import *
import os
os.chdir("/storage/emulated/0/Fonts")
print(os.getcwd())
root=Tk()
c=Canvas(root,width=500,height=500)
c.pack()
myimage=PhotoImage(file='//storage//emulated//0//F onts//Jayesh.jpg')
c.create_image(0,0,anchor=NW,image=myimage)
root.mainloop()