我想明确设置终端大小。有没有跨平台的方法来做到这一点?我想做一个游戏,展示固定大小的艺术。
问问题
477 次
1 回答
0
我使用了 Tkinter(感谢 Steven Rumbalski!),因为如果它是跨平台的,我不介意使用 GUI。基本上,我设置了窗口几何形状和“艺术”标签的大小:
from Tkinter import *
#Assign a variable to the shown image to be able to change it
displayed_image = "test.gif"
class App:
def __init__(self, master):
#Make a frame to enclose the art with a relief
self.topframe = Frame(master, borderwidth=5, pady=5, relief=RIDGE)
#Pack the frame to draw it
self.topframe.pack()
#This frame will contain the prompt
self.frame = Frame(master)
self.frame.pack()
photo = PhotoImage(file="../Art/"+displayed_image)
art = Label(self.topframe, width=1280, height=720, image=photo)
art.photo = photo
art.pack()
prompt = Entry(self.frame, width=1280)
prompt.pack()
root = Tk()
root.wm_geometry("%dx%d" % (1300, 780))
app = App(root)
root.mainloop()
root.destroy()
于 2013-09-15T18:35:48.340 回答