Skip to content

Instantly share code, notes, and snippets.

@shanev
Created October 18, 2018 21:45
Show Gist options
  • Save shanev/102e7e44322b002a276d1f05023af18c to your computer and use it in GitHub Desktop.
Save shanev/102e7e44322b002a276d1f05023af18c to your computer and use it in GitHub Desktop.
#!/bin/sh
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
FILE="$DIR/../Design/1f64a.svg"
OUTPUT_LOCATION="$DIR/../iTunes"
# convert svg asset to png
convert -density 2000 -resize 1024x1024 -background none $FILE appicon-foreground.png
# create a linear gradient background
convert -size 1024x1024 -define gradient:direction=southwest gradient:yellow-green linear_gradient.png
# overlay monkey on background
composite -gravity center appicon-foreground.png linear_gradient.png $OUTPUT_LOCATION/iTunesArtwork@2x.png
# delete intermediary assets
rm linear_gradient.png
rm appicon-foreground.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment