From 48dab56e6ee38f6b9ed67816b86e636828c28131 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Wed, 9 Oct 2019 14:30:55 -0700 Subject: [PATCH] Updated image filename --- examples/rgb_display_pillow_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/rgb_display_pillow_image.py b/examples/rgb_display_pillow_image.py index df4c680..1b85c13 100644 --- a/examples/rgb_display_pillow_image.py +++ b/examples/rgb_display_pillow_image.py @@ -31,7 +31,7 @@ draw.rectangle((0, 0, width, height), outline=0, fill=(0, 0, 0)) disp.image(image, rotation) -image = Image.open("blinka.png") +image = Image.open("blinka.jpg") # Scale the image to the smaller screen dimension image_ratio = image.width / image.height