Skip to content

Instantly share code, notes, and snippets.

@joshski
Last active August 29, 2015 14:12
Show Gist options
  • Save joshski/7672f15fa9e87b85de9c to your computer and use it in GitHub Desktop.
Save joshski/7672f15fa9e87b85de9c to your computer and use it in GitHub Desktop.
Resize icons for ios
# ruby resize.rb <path-to-hi-res-icon>
[29,40,58,76,80,87,120,156,180].each do |n|
`convert "#{ARGV[0]}" -resize #{n}x#{n} "#{n}.png"`
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment