Created
October 18, 2018 21:45
-
-
Save shanev/102e7e44322b002a276d1f05023af18c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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/[email protected] | |
# 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