Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. base=$1
  4.  
  5. # App list in iTunes (do not include)
  6. convert "$base" -resize '512x512' -unsharp 1x4 "iTunesArtWork.png"
  7. convert "$base" -resize '1024x1024' -unsharp 1x4 "iTunesArtwork@2x.png"
  8.  
  9. # Home screen on iPhone/iPod Touch with retina display
  10. convert "$base" -resize '120x120' "Icon-60@2x.png"
  11. # Home screen on iPhone with retina HD display
  12. convert "$base" -resize '180x180' "Icon-60@3x.png"
  13. # Home screen on iPad
  14. convert "$base" -resize '76x76' -unsharp 1x4 "Icon-76.png"
  15. # Home screen on iPad with retina display
  16. convert "$base" -resize '152x152' -unsharp 1x4 "Icon-76@2x.png"
  17. # Home screen on iPad Pro
  18. convert "$base" -resize '167x167' -unsharp 1x4 "Icon-83.5@2x.png"
  19. # Spotlight
  20. convert "$base" -resize '40x40' -unsharp 1x4 "Icon-Small-40.png"
  21. # Spotlight on devices with retina display
  22. convert "$base" -resize '80x80' -unsharp 1x4 "Icon-Small-40@2x.png"
  23. # Spotlight on devices with retina HD display
  24. convert "$base" -resize '120x120' -unsharp 1x4 "Icon-Small-40@3x.png"
  25. # Settings
  26. convert "$base" -resize '29x29' -unsharp 1x4 "Icon-Small.png"
  27. # Settings on devices with retina display
  28. convert "$base" -resize '58x58' -unsharp 1x4 "Icon-Small@2x.png"
  29. # Settings on devices with retina HD display
  30. convert "$base" -resize '87x87' -unsharp 1x4 "Icon-Small@3x.png"
  31. # Notifications on iPad
  32. convert "$base" -resize '20x20' -unsharp 1x4 "Icon-Notification.png"
  33. # Notifications on devices with retina HD display
  34. convert "$base" -resize '60x60' -unsharp 1x4 "Icon-Notification@3x.png"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement