mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-17 03:48:55 +00: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)
|