我正在尝试编写将通过远程终端连接执行的代码。首先,它会提示使用图像文件,然后全屏显示所述图像。我能够拼凑代码来实现这一目标。唯一的问题是我无法退出全屏图像而不退出终端中的进程。
我随时随地都能看,并且无法解决这种特殊情况。非常感谢任何帮助,如果需要,我很乐意提供更多信息。 (我只使用Python 2.7,因为我引用的初始代码是2.7)。
这是我到目前为止所做的:
#!/usr/bin/env python
from Tkinter import *
from PIL import Image, ImageTk
def choose_picture():
user_input = raw_input("Choose picture file: ")
user_input = (user_input + ".jpg")
root = Tk()
main_image = Image.open(user_input) # Room label image
photo = ImageTk.PhotoImage(main_image)
Label(root, image=photo).pack()
root.attributes('-fullscreen', True)
root.mainloop()
choose_picture()
答案 0 :(得分:1)
感谢您的帮助。最后,我引用的资源是一个更多的试验和错误的问题。包括我后代的最终代码,虽然我确信有更好的方法可以做到。
android:paddingLeft="16dp"
android:paddingRight="16dp"