mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-05 04:47:54 +00:00
cbb4380583
Co-authored-by: Ronan Jouchet <ronan@jouchet.fr>
57 lines
1.3 KiB
Bash
Executable File
57 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
### USAGE
|
|
|
|
# ./convertToIcns <input png> <outp icns>
|
|
# Example
|
|
# ./convertToIcns ~/sample.png ~/Desktop/converted.icns
|
|
|
|
# exit the shell script on error immediately
|
|
set -e
|
|
|
|
# Exec Paths
|
|
HAVE_IMAGEMAGICK=
|
|
HAVE_ICONUTIL=
|
|
HAVE_SIPS=
|
|
HAVE_GRAPHICSMAGICK=
|
|
|
|
type convert &>/dev/null && HAVE_IMAGEMAGICK=true
|
|
type iconutil &>/dev/null && HAVE_ICONUTIL=true
|
|
type sips &>/dev/null && HAVE_SIPS=true
|
|
type gm &>/dev/null && gm version | grep GraphicsMagick &>/dev/null && HAVE_GRAPHICSMAGICK=true
|
|
|
|
[[ -z "$HAVE_ICONUTIL" ]] && { echo >&2 "Cannot find required iconutil executable"; exit 1; }
|
|
[[ -z "$HAVE_IMAGEMAGICK" && -z "$HAVE_SIPS" && -z "$HAVE_GRAPHICSMAGICK" ]] && { echo >&2 "Cannot find required image converter, please install sips, imagemagick or graphicsmagick"; exit 1; }
|
|
|
|
# Parameters
|
|
SOURCE="$1"
|
|
DEST="$2"
|
|
|
|
# Check source and destination arguments
|
|
if [ -z "${SOURCE}" ]; then
|
|
echo "No source image specified"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "${DEST}" ]; then
|
|
echo "No destination specified"
|
|
exit 1
|
|
fi
|
|
|
|
TEMP_DIR="$(mktemp -d -t nativefier_icons)"
|
|
ICONSET="${TEMP_DIR}/converted.iconset"
|
|
|
|
function cleanUp() {
|
|
rm -rf "${TEMP_DIR}"
|
|
}
|
|
|
|
trap cleanUp EXIT
|
|
|
|
"${BASH_SOURCE%/*}/convertToIconset" "${SOURCE}" "${ICONSET}"
|
|
|
|
# Create an icns file lefrom the iconset
|
|
iconutil -c icns "${ICONSET}" -o "${DEST}"
|
|
|
|
trap - EXIT
|
|
cleanUp
|