]> git.ktnx.net Git - mobile-ledger.git/blobdiff - tools/populate-app-icon
use rsvg-convert (librsvg2) instead of convert (imagemagick) to create launcher icon...
[mobile-ledger.git] / tools / populate-app-icon
index d7840dd6068173d85f938c2e6b8e19fa015a4000..a800531643b5bc4cdc3fff97fda3a9b676f3f750 100755 (executable)
@@ -13,9 +13,8 @@ gen_icons() {
         DST_DIR="$RES_DIR/mipmap-$name"
         mkdir -p "$DST_DIR"
         DST="$DST_DIR/app_icon.png"
-        convert -background none "$ICON_ART" -scale ${size}x${size} \
-            -antialias -strip \
-            "$DST"
+        rsvg-convert --background-color none "$ICON_ART" -w $size -h $size \
+            -o "$DST"
         optipng "$DST"
     done
 }