png decode example for display pack

thirdr 2024-03-26 15:31:42 +00:00
rodzic 3c2d710e2e
commit 735cb1a058
2 zmienionych plików z 40 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,40 @@
from picographics import PicoGraphics, DISPLAY_PICO_DISPLAY, PEN_RGB332
import pngdec
# Create a PicoGraphics instance
display = PicoGraphics(display=DISPLAY_PICO_DISPLAY, pen_type=PEN_RGB332)
# Set the backlight so we can see it!
display.set_backlight(1.0)
# Create an instance of the PNG Decoder
png = pngdec.PNG(display)
# Create some pens for use later.
BG = display.create_pen(200, 200, 200)
TEXT = display.create_pen(0, 0, 0)
# Clear the screen
display.set_pen(BG)
display.clear()
display.set_pen(TEXT)
display.text("PNG Pencil", 15, 80)
try:
# Open our PNG File from flash. In this example we're using an image of a cartoon pencil.
# You can use Thonny to transfer PNG Images to your Pico.
png.open_file("pencil.png")
# Decode our PNG file and set the X and Y
png.decode(50, 100)
# Handle the error if the image doesn't exist on the flash.
except OSError:
print("Error: PNG File missing. Copy the PNG file from the example folder to your Pico using Thonny and run the example again.")
display.update()
# We're not doing anything else with the display now but we want to keep the program running!
while True:
pass

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 1.1 KiB