Skip to content

Instantly share code, notes, and snippets.

@ooooak
Created October 17, 2015 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ooooak/a75c3611663932be92f1 to your computer and use it in GitHub Desktop.
Save ooooak/a75c3611663932be92f1 to your computer and use it in GitHub Desktop.
resize image in python [linux only]
import os
import glob
path = '~/send/*.JPG'
files = glob.glob(path)
for f in files:
os.system('convert -resize 24% ' + f + ' ' + f.replace('/send/', '/send/new/'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment