FitzzzzZZZZ

Results 2 comments of FitzzzzZZZZ

![U4%FO)MY6B3D~`I6~ RX73J](https://github.com/espressif/esp-who/assets/138110995/6e475973-570e-4a88-8c8d-6c80b46e7970) 转换前的图片

RGB888转RGB565的程序如下: from PIL import Image def image_to_rgb565_array(image_path): img = Image.open(image_path) img = img.convert('RGB') # Convert image to RGB mode width, height = img.size rgb565_array = [] for y in range(height):...