I made an "orange" boot animation for my orange S4A. It may not match the color perfectly...

Replace the bootanimation.zip in /system/media (must be rw mounted).
If you want to make your own color:
I used Imagemagick. Manual for changing Colors.
Command will change the hue in all jpgs in the current directory and all subdirectories.
When zipping the bootanimation.zip, keep in mind that you don't use any compression (at least it did not work for me with compression level 9).

Replace the bootanimation.zip in /system/media (must be rw mounted).
If you want to make your own color:
I used Imagemagick. Manual for changing Colors.
Command will change the hue in all jpgs in the current directory and all subdirectories.
Code:
for /r %%a in (*.jpg) do "d:\android\boot\ImageMagick-6.8.7-1\convert.exe" "%%a" -modulate 100,120,205 -quality 75 "%%a"
Attachments
-
4.1 MB Views: 138