lvgl/demos/multilang/img2c.py
Gabor Kiss-Vamosi f753265a79 arch(draw): add parallel rendering architecture
BREAKING CHANGE

This is a huge update which introduces parallel rendering. lv_conf.h needs to be updated too.
2023-07-05 13:05:19 +02:00

13 lines
171 B
Python
Executable File

#!/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)