Hi,
Following below method, we could change the Android startup logo on DM3730 EVB successfully
1. use Windows Paint to get a 480x640 PNG-24 format picture, named android_logo.png
2. use ImageMagick tool to get android_logo.raw file
$ convert -depth 8 android_logo.png rgb:android_logo.raw
3. use android/out/host/linux-x86/bin/rgb2565 to get initlogo.rle
$ rgb2565 -rle < android_logo.raw > initlogo.rle
---
For our prototype board, the display resolution is 1024x600. We get a 1024x600 PNG picture, using the same method, but the logo can't display normally
We want to see like this:
But in fact, we saw like this:
Could you please help me? Thanks in advance!