2
0
MasterPassword/Scripts/convertImages
Maarten Billemont 0d638a4c3f Guide update.
[FIXED]     MP-1: Guide images were a bit outdated.
2012-05-12 00:59:58 +02:00

37 lines
806 B
Bash
Executable File

#! /usr/bin/env bash
source bashlib
shopt -s nullglob
emit "Converting iTunesArtwork"
icons=(
[29]="Icon-Small.png"
[50]="Icon-Small-50.png"
[58]="Icon-Small@2x.png"
[57]="Icon.png"
[72]="Icon-72.png"
[114]="Icon@2x.png"
)
cd "${0%/*}/../Resources"
for size in "${!icons[@]}"; do
file=${icons[size]}
[[ iTunesArtwork.png -nt $file ]] || continue
emit "$file ($size px)" --
convert "iTunesArtwork.png" -resize "${size}x${size}" "$file"
emit -$?
done
echo
emit "Converting @2x artwork"
for file in ./{,Guide,Lock,Background}/*@2x.png; do
inArray "${file##*/}" "${icons[@]}" && continue
[[ $file -nt ${file/@2x} ]] || continue
emit "${file/@2x}" --
convert "$file" -filter box -resize 50% -unsharp 0x1 "${file/@2x}"
emit -$?
done