From 672997ca35cb6da5122c747abfb4bb2e79855885 Mon Sep 17 00:00:00 2001 From: rdagger Date: Thu, 13 Jun 2024 17:48:24 -0700 Subject: [PATCH] Update img2rgb565.py docstring --- utils/img2rgb565.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/utils/img2rgb565.py b/utils/img2rgb565.py index eedf0e2..84e7418 100644 --- a/utils/img2rgb565.py +++ b/utils/img2rgb565.py @@ -1,5 +1,10 @@ # -*- coding: utf-8 -*- -"""Utility to convert images to raw RGB565 format.""" +"""Utility to convert images to raw RGB565 format. + +Usage: + python img2rgb565.py + is the full path to the image file you want to convert. +""" from PIL import Image from struct import pack