Fork of Tangara with customizations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
tangara-fw/lib/lvgl/demos/transform/img2c.py

12 lines
171 B

#!/usr/bin/python3
import os, sys
files = ""
for i in sys.argv[1:]:
files += i + " "
c = f"lv_img_conv.js {files} -f -c CF_TRUE_COLOR_ALPHA"
print(c)
os.system(c)