2017-12-19から1日間の記事一覧

ピクセル調整(Python)

#"convert.py" with imagemagick import os for file in os.listdir(os.getcwd()): if "JPG" in file: spell = "convert.exe -resize 48% "+file+" rsd_"+file print spell os.system(spell)