From 9e1288193294ed09e964ec4ef07ca2c38d855c45 Mon Sep 17 00:00:00 2001 From: Mario Fetka Date: Mon, 13 Feb 2012 19:42:16 +0100 Subject: [PATCH] force 256 colours --- lib/builder-utils.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/builder-utils.sh b/lib/builder-utils.sh index b50826f..597775c 100644 --- a/lib/builder-utils.sh +++ b/lib/builder-utils.sh @@ -140,7 +140,7 @@ convert_image() { log_debug "Icon Wight: $wight < Hight: $hight" convert $src -colorspace RGB -transparent white -background transparent \ -resize x160 -size 160x160 xc:transparent +swap -gravity center \ - -composite -modulate 110 png8:$dst + -composite -modulate 110 -colors 256 png8:$dst builder_check_error "converting image" elif [ $wight -gt $hight ] ; then # Its wider so force 160x and let imagemagic decide the right hight @@ -148,14 +148,14 @@ convert_image() { log_debug "Icon Wight: $wight > Hight: $hight" convert $src -colorspace RGB -transparent white -background transparent \ -resize 160x -size 160x160 xc:transparent +swap -gravity center \ - -composite -modulate 110 png8:$dst + -composite -modulate 110 -colors 256 png8:$dst builder_check_error "converting image" elif [ $wight -eq $hight ] ; then # Its scare so force 160x160 log_debug "Icon Wight: $wight = Hight: $hight" convert $src -colorspace RGB -transparent white -background transparent \ -resize 160x160 -size 160x160 xc:transparent +swap -gravity center \ - -composite -modulate 110 png8:$dst + -composite -modulate 110 -colors 256 png8:$dst builder_check_error "converting image" else # Imagemagic is unable to detect the aspect ratio so just force 160x160 @@ -163,7 +163,7 @@ convert_image() { log_debug "Icon Wight: $wight unknown Hight: $hight" convert $src -colorspace RGB -transparent white -background transparent \ -resize 160x160 xc:transparent +swap -gravity center -composite \ - -modulate 110 png8:$dst + -modulate 110 -colors 256 png8:$dst builder_check_error "converting image" fi