PYGLET – Getting Window Size

In this article we will see how we can get the current size of window in PYGLET module in python. Pyglet is easy to use but powerful library for developing visually rich GUI applications like games, multimedia etc. A window is a “heavyweight” object occupying operating system resources. Windows may appear as floating regions or can be set to fill an entire screen (fullscreen). The current size of the window is basically width and height of the window. The window size does not include the border or title bar.
We can create a window with the help of command given below 
 
pyglet.window.Window(width, height, title)
In order to create window we use get_size method with the window object
Syntax : window.get_size()
Argument : It takes no argument
Return : It returns tuple
Below is the implementation 
 
Python3
# importing pyglet moduleimport pygletimport pyglet.window.key# width of windowwidth = 500# height of windowheight = 500# caption i.e title of the windowtitle = "GeeksforLazyroar"# creating a windowwindow = pyglet.window.Window(width, height, title)# text text = "Lazyroar"# creating a label with font = times roman# font size = 36# aligning it to the centerlabel = pyglet.text.Label(text,                          font_name ='Times New Roman',                          font_size = 36,                          x = window.width//2, y = window.height//2,                          anchor_x ='center', anchor_y ='center')# on draw event@window.eventdef on_draw():         # clearing the window    window.clear()         # drawing the label on the window    label.draw()     # key press event    @window.eventdef on_key_press(symbol, modifier):         # key "E" get press    if symbol == pyglet.window.key.E:                 # closing the window        window.close()# getting window sizevalue = window.get_size()         # start running the applicationpyglet.app.run()# showing valueprint("Window Size : ", end = "")print(value) | 
Output : 
 
Window Size : (500, 500)
				
					



