8b06d3a3b1
Some systems seem to have with the convert command as-is: convert: Cannot write PNG8 or color-type 3; colormap is NULL Because we are writing PNG8, there area a max of 256 colors total. Explicitly telling convert to stay under the max fixes the issue. Change-Id: I595fb4503396ca20226ea76bf7b15ed9878752fd
39 lines
949 B
Bash
Executable File
39 lines
949 B
Bash
Executable File
#!/bin/bash
|
|
|
|
WIDTH="$1"
|
|
HEIGHT="$2"
|
|
HALF_RES="$3"
|
|
OUT="$ANDROID_PRODUCT_OUT/obj/BOOTANIMATION"
|
|
|
|
if [ "$HEIGHT" -lt "$WIDTH" ]; then
|
|
IMAGEWIDTH="$HEIGHT"
|
|
else
|
|
IMAGEWIDTH="$WIDTH"
|
|
fi
|
|
|
|
IMAGESCALEWIDTH="$IMAGEWIDTH"
|
|
IMAGESCALEHEIGHT=$(expr $IMAGESCALEWIDTH / 3)
|
|
|
|
if [ "$HALF_RES" = "true" ]; then
|
|
IMAGEWIDTH=$(expr $IMAGEWIDTH / 2)
|
|
fi
|
|
|
|
IMAGEHEIGHT=$(expr $IMAGEWIDTH / 3)
|
|
|
|
RESOLUTION=""$IMAGEWIDTH"x"$IMAGEHEIGHT""
|
|
|
|
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\""
|
|
|
|
# Create desc.txt
|
|
echo "$IMAGESCALEWIDTH $IMAGESCALEHEIGHT" 60 > "$OUT/bootanimation/desc.txt"
|
|
cat "vendor/cm/bootanimation/desc.txt" >> "$OUT/bootanimation/desc.txt"
|
|
|
|
# Create bootanimation.zip
|
|
cd "$OUT/bootanimation"
|
|
|
|
zip -qr0 "$OUT/bootanimation.zip" .
|