VOOZH about

URL: https://www.geeksforgeeks.org/python/pyglet-showing-image-using-sprite/

⇱ PYGLET – Showing Image using Sprite - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

PYGLET – Showing Image using Sprite

Last Updated : 6 Jan, 2022

In this article we will see how we can show image on the 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). A sprite is an instance of an image displayed on-screen. Multiple sprites can display the same image at different positions on the screen. Sprites can also be scaled larger or smaller, rotated at any angle and drawn at a fractional opacity. Image is loaded with the help of image module of pyglet.

We can create a window with the help of command given below 

# creating a window
window = pyglet.window.Window(width, height, title)
 

In order to create window we use Sprite method with pyglet.sprite
Syntax : pyglet.sprite.Sprite(img, x, y)
Argument : It takes image object, X and Y co-ordinates as argument
Return : It returns Sprite object 
 

Below is the implementation 

Output : 

👁 Image


 

Comment
Article Tags: