1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #!/bin/sh
- #
- # Copyright (c) 2015 Marcus Rohrmoser http://mro.name/me. All rights reserved.
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- #
- cd "$(dirname "$0")/build"
- inkscape=/Applications/Inkscape.app/Contents/Resources/bin/inkscape
- $inkscape --help >/dev/null 2>&1 || { echo "Inkscape is not installed." && exit 1; }
- optipng -help >/dev/null 2>&1 || { echo "optipng is not installed." && exit 1; }
- OPTS="--export-area-page --export-width=1024 --export-height=1024 --without-gui"
- src="../../shaarli-petal.svg"
- dst="iTunesArtwork.png"
- "$inkscape" --export-png="$(pwd)/$dst" $OPTS --file="$(pwd)/$src"
- optipng -o 7 "$(pwd)/$dst" &
- dst=iTunesArtwork.svg
- cp "$src" "$dst"
- # http://stackoverflow.com/a/10492912
- $inkscape "$(pwd)/$dst" \
- --select=layer3 --verb=EditDelete \
- --select=g4737 --verb=EditDelete \
- --select=layer2 --verb=EditDelete \
- --select=g3001 --verb=EditDelete \
- --select=layer1 --verb=EditDelete \
- --verb=FileVacuum --verb=FileSave \
- --verb=FileClose --verb=FileQuit
- $inkscape $OPTS --vacuum-defs --export-plain-svg="$(pwd)/$dst" --file="$(pwd)/$dst"
- img=iPhone-App
- siz=60
- sips --resampleHeightWidthMax "$(($siz * 1))" iTunesArtwork.png --out "$img.png"
- sips --resampleHeightWidthMax "$(($siz * 2))" iTunesArtwork.png --out "$img@2x.png"
- sips --resampleHeightWidthMax "$(($siz * 3))" iTunesArtwork.png --out "$img@3x.png"
- optipng -o 7 "$img*.png" &
- img=iPhone-Settings
- siz=29
- sips --resampleHeightWidthMax "$(($siz * 1))" iTunesArtwork.png --out "$img.png"
- sips --resampleHeightWidthMax "$(($siz * 2))" iTunesArtwork.png --out "$img@2x.png"
- sips --resampleHeightWidthMax "$(($siz * 3))" iTunesArtwork.png --out "$img@3x.png"
- optipng -o 7 "$img*.png" &
- img=iPhone-Spotlight
- siz=40
- sips --resampleHeightWidthMax "$(($siz * 1))" iTunesArtwork.png --out "$img.png"
- sips --resampleHeightWidthMax "$(($siz * 2))" iTunesArtwork.png --out "$img@2x.png"
- sips --resampleHeightWidthMax "$(($siz * 3))" iTunesArtwork.png --out "$img@3x.png"
- optipng -o 7 "$img*.png" &
- img=iPad-App
- siz=76
- sips --resampleHeightWidthMax "$(($siz * 1))" iTunesArtwork.png --out "$img.png"
- sips --resampleHeightWidthMax "$(($siz * 2))" iTunesArtwork.png --out "$img@2x.png"
- optipng -o 7 "$img*.png" &
- wait
|