Skip to content

Instantly share code, notes, and snippets.

@jackyshan
Created February 1, 2016 04:50
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 jackyshan/cf7fcbcd5ebcbe1518cf to your computer and use it in GitHub Desktop.
Save jackyshan/cf7fcbcd5ebcbe1518cf to your computer and use it in GitHub Desktop.
图片切成Android比例
#!/bin/sh
convert icon-1024.png -resize 48x48 mipmap-mdpi/ic_launcher.png
convert icon-1024.png -resize 72x72 mipmap-hdpi/ic_launcher.png
convert icon-1024.png -resize 96x96 mipmap-xhdpi/ic_launcher.png
convert icon-1024.png -resize 144x144 mipmap-xxhdpi/ic_launcher.png
convert icon-1024.png -resize 192x192 mipmap-xxxhdpi/ic_launcher.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment