mirror of
https://github.com/No-Chicken/Power-Pico.git
synced 2026-04-03 13:02:36 +08:00
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)
|