You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
171 B
13 lines
171 B
11 months ago
|
#!/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)
|