Skip to content

Instantly share code, notes, and snippets.

@steverichey
Created March 15, 2017 21:47
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 steverichey/bf0c6008573de7baf8d216f03f989e1b to your computer and use it in GitHub Desktop.
Save steverichey/bf0c6008573de7baf8d216f03f989e1b to your computer and use it in GitHub Desktop.
chop up an Android screenshot real nice
#!/bin/sh
filename="${1%.*}"
convert $1 -gravity North -chop 0x72 ${filename}-trimmed.png
convert ${filename}-trimmed.png -gravity South -chop 0x96 ${filename}-trimmed-both.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment