mirror of
https://github.com/dbarzin/pandora-box.git
synced 2025-08-03 04:45:22 +02:00
work in progress
This commit is contained in:
parent
c204384cb3
commit
99a6960a13
8 changed files with 40 additions and 3 deletions
19
images/images.py
Executable file
19
images/images.py
Executable file
|
@ -0,0 +1,19 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
# display all images and reset
|
||||
|
||||
import os
|
||||
import time
|
||||
|
||||
format = "1020x600"
|
||||
#format = "1920x1080"
|
||||
|
||||
images = ["pandora-box1.png", "pandora-box2.png", "pandora-box3.png", "pandora-box4.png"]
|
||||
|
||||
for image in images :
|
||||
os.system("convert -resize %s -background black -gravity center -extent %s %s bgra:/dev/fb0" % (format,format,image))
|
||||
time.sleep(1)
|
||||
|
||||
os.system("reset")
|
||||
|
||||
|
BIN
images/pandora-box1.png
Normal file
BIN
images/pandora-box1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.4 MiB |
BIN
images/pandora-box2.png
Normal file
BIN
images/pandora-box2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 764 KiB |
BIN
images/pandora-box3.png
Normal file
BIN
images/pandora-box3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 MiB |
BIN
images/pandora-box4.png
Normal file
BIN
images/pandora-box4.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 MiB |
Loading…
Add table
Add a link
Reference in a new issue