core-agent-linux/qubes-rpc/qubes.GetImageRGBA

43 lines
1.1 KiB
Plaintext
Raw Normal View History

2014-01-30 16:30:17 +01:00
set -e
read filename
ICON_MAXSIZE=512
if [ "${filename%%:*}" = xdgicon ]; then
filename="$(/usr/lib/qubes/xdg-icon "${filename#*:}" "$ICON_MAXSIZE")"
forcesize="$ICON_MAXSIZE"
2014-01-30 16:30:17 +01:00
[ -n "${filename}" ]
2015-02-05 03:14:41 +01:00
elif [ "${filename}" = "-" ] || [ "${filename##*:}" = "-" ]; then
2014-01-30 16:30:17 +01:00
tmpfile="$(mktemp /tmp/qimg-XXXXXXXX)"
cat > "${tmpfile}"
2015-02-05 03:14:41 +01:00
if [ "${filename##*:}" = "-" ]; then
filename="${filename%:*}:${tmpfile}"
else
filename="${tmpfile}"
2014-01-30 16:30:17 +01:00
fi
2015-02-05 03:14:41 +01:00
elif ! [ -r "${filename}" ]; then
2014-01-30 16:30:17 +01:00
exit 1
fi
s="$(identify -format '%w %h %m' "$filename")"
w="$(echo "$s"|cut -d " " -f 1)"
h="$(echo "$s"|cut -d " " -f 2)"
m="$(echo "$s"|cut -d " " -f 3)"
if [ "$m" = SVG ]; then
if [ -n "$forcesize" ]; then
w="$forcesize"
h="$forcesize"
fi
tmpfile2="$(mktemp /tmp/qimg-XXXXXXXX.png)"
rsvg-convert -w "$w" -h "$h" -o "$tmpfile2" "$filename"
filename="$tmpfile2"
fi
echo "$w $h"
convert -depth 8 -size "${w}x${h}" "$filename" rgba:-
2014-01-30 16:30:17 +01:00
[ -n "${tmpfile}" ] && rm -f "${tmpfile}" || true
[ -n "${tmpfile2}" ] && rm -f "${tmpfile2}" || true
2014-01-30 16:30:17 +01:00
# vim: ft=sh ts=4 sw=4 et