bootanimation: Use mogrify to convert images in place
Fixes bootanimation generation for Darwin/BSD. Change-Id: Id9e38bcb9db7b550f22bda1250dbb515599e8f93
This commit is contained in:
parent
7ee326d463
commit
70658805a6
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,8 @@ for part_cnt in 0 1 2 3 4
|
|||
do
|
||||
mkdir -p $ANDROID_PRODUCT_OUT/obj/BOOTANIMATION/bootanimation/part$part_cnt
|
||||
done
|
||||
tar xfp "vendor/cm/bootanimation/bootanimation.tar" --to-command="convert - -resize '$RESOLUTION' -colors 250 \"png8:$OUT/bootanimation/\$TAR_FILENAME\""
|
||||
tar xfp "vendor/cm/bootanimation/bootanimation.tar" -C "$OUT/bootanimation/"
|
||||
mogrify -resize $RESOLUTION -colors 250 "$OUT/bootanimation/"*"/"*".png"
|
||||
|
||||
# Create desc.txt
|
||||
echo "$IMAGESCALEWIDTH $IMAGESCALEHEIGHT" 60 > "$OUT/bootanimation/desc.txt"
|
||||
|
|
Loading…
Reference in a new issue