Skip to content

Instantly share code, notes, and snippets.

@samelie
Last active October 17, 2015 16:32
Show Gist options
  • Save samelie/3b6fecabdbd8230b10d4 to your computer and use it in GitHub Desktop.
Save samelie/3b6fecabdbd8230b10d4 to your computer and use it in GitHub Desktop.
resize imagemagik
for i in *.png; do convert $i -resize 480x270 $i; done
@samelie
Copy link
Author

samelie commented Oct 17, 2015

for i in *.jpg; do convert $i -resize 1280x720^ -gravity center -crop 1280x720+0+0 $i; done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment