mirror of
https://github.com/lvgl/lvgl.git
synced 2024-11-23 17:53:45 +08:00
f753265a79
BREAKING CHANGE This is a huge update which introduces parallel rendering. lv_conf.h needs to be updated too.
13 lines
171 B
Python
Executable File
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)
|