else
Pixelify can now be used straight from the commandline pixelify inputfile objective outputdirectory
This commit is contained in:
parent
4f7dd1c4cd
commit
6a6506ef1d
1 changed files with 16 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
import urllib.request
|
import urllib.request
|
||||||
|
|
||||||
def boot():
|
def boot():
|
||||||
|
@ -72,6 +73,18 @@ def pixelify(path, objectives=[32], subfolder="pixel", outpath=""):
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
while True:
|
if len(sys.argv) > 1:
|
||||||
boot()
|
print(sys.argv)
|
||||||
print('\n')
|
path = sys.argv[1]
|
||||||
|
objectives = [32]
|
||||||
|
outpath = ""
|
||||||
|
try:
|
||||||
|
objectives = [int(x) for x in sys.argv[2].split(',')]
|
||||||
|
outpath = sys.argv[3]
|
||||||
|
except IndexError:
|
||||||
|
pass
|
||||||
|
pixelify(path, objectives, outpath=outpath)
|
||||||
|
else:
|
||||||
|
while True:
|
||||||
|
boot()
|
||||||
|
print('\n')
|
Loading…
Reference in a new issue