File: load_picture.py

package info (click to toggle)
python-guizero 0.6.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,820 kB
  • sloc: python: 5,376; makefile: 28; sh: 17
file content (8 lines) | stat: -rw-r--r-- 201 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
from guizero import App, Picture

app = App()
picture = Picture(app, image="guizero.gif")
picture_png = Picture(app, image="guizero.png")
picture_jpg = Picture(app, image="guizero.jpg")

app.display()