Skip to content

Instantly share code, notes, and snippets.

@twaddington
Last active December 30, 2015 10:59
Show Gist options
  • Save twaddington/7819524 to your computer and use it in GitHub Desktop.
Save twaddington/7819524 to your computer and use it in GitHub Desktop.
Cropping screens for Google Play

Google Play

You can easily use ImageMagick to strip the status and navigation bar off of your Google Play images.

Nexus 5

# Top and bottom
$ convert screen.png -crop +0+76 -crop +0-145 +repage screen_crop.png

# Bottom only
$ convert screen.png -crop +0-145 +repage screen_crop.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment