mirror of
https://github.com/lvgl/lvgl.git
synced 2024-11-27 11:43:43 +08:00
13 lines
171 B
Python
13 lines
171 B
Python
|
#!/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)
|