Advertisement
Guest User

Untitled

a guest
Jun 14th, 2015
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. #!/bin/bash
  2. f=$(pwd)
  3.  
  4. sips --resampleWidth 29 "${f}/${1}" --out "${f}/iPhoneSpotlight-iPhoneSettings-29.png"
  5. sips --resampleWidth 58 "${f}/${1}" --out "${f}/iPhoneSpotlight-iPhoneSettings-29@2x.png"
  6. sips --resampleWidth 87 "${f}/${1}" --out "${f}/iPhoneSpotlight-iPhoneSettings-29@3x.png"
  7.  
  8. sips --resampleWidth 80 "${f}/${1}" --out "${f}/iPhoneSpotlight-40@2x.png"
  9. sips --resampleWidth 120 "${f}/${1}" --out "${f}/iPhoneSpotlight-40@3x.png"
  10.  
  11. sips --resampleWidth 57 "${f}/${1}" --out "${f}/iPhoneApp-57.png"
  12. sips --resampleWidth 114 "${f}/${1}" --out "${f}/iPhoneApp-57@2x.png"
  13.  
  14. sips --resampleWidth 120 "${f}/${1}" --out "${f}/iPhoneApp-60@2x.png"
  15. sips --resampleWidth 180 "${f}/${1}" --out "${f}/iPhoneApp-60@3x.png"
  16.  
  17. sips --resampleWidth 29 "${f}/${1}" --out "${f}/iPadSettings-29.png"
  18. sips --resampleWidth 58 "${f}/${1}" --out "${f}/iPadSettings-29@2x.png"
  19.  
  20. sips --resampleWidth 40 "${f}/${1}" --out "${f}/iPadSpotlight-40.png"
  21. sips --resampleWidth 80 "${f}/${1}" --out "${f}/iPadSpotlight-40@2x.png"
  22.  
  23. sips --resampleWidth 50 "${f}/${1}" --out "${f}/iPadSpotlight-50.png"
  24. sips --resampleWidth 100 "${f}/${1}" --out "${f}/iPadSpotlight-50@2x.png"
  25.  
  26. sips --resampleWidth 72 "${f}/${1}" --out "${f}/iPadApp-72.png"
  27. sips --resampleWidth 144 "${f}/${1}" --out "${f}/iPadApp-72@2x.png"
  28.  
  29. sips --resampleWidth 76 "${f}/${1}" --out "${f}/iPadApp-76.png"
  30. sips --resampleWidth 152 "${f}/${1}" --out "${f}/iPadApp-76@2x.png"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement