Use mktemp for tempfile and allow out-of-aspect resizing
This commit is contained in:
parent
2c857b2a93
commit
7451e358bd
@ -21,7 +21,7 @@ for SIZE in $((DIMS[0] - WIDESORT[0])) $((DIMS[0] + WIDESORT[0])); do
|
|||||||
(( SIZE > 0 && (SIZE & (SIZE - 1)) == 0 )) && RESIZE=${SIZE}
|
(( SIZE > 0 && (SIZE & (SIZE - 1)) == 0 )) && RESIZE=${SIZE}
|
||||||
done
|
done
|
||||||
|
|
||||||
set -x
|
TEMPFILE=$(mktemp)
|
||||||
convert "${1}" -resize ${RESIZE}x${RESIZE} /tmp/tmp.png
|
convert "${1}" -resize ${RESIZE}x${RESIZE}\! ${TEMPFILE}
|
||||||
png2icns ${1/%png/icns} /tmp/tmp.png
|
png2icns ${1/%png/icns} ${TEMPFILE}
|
||||||
rm /tmp/tmp.png
|
rm ${TEMPFILE}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user