android----splashミラーを作成する


1、ImageMagickが持っているconvertコマンドを使用して、rawフォーマット変換を行う(convert-depth 8 splash.png rgb:splash.raw)    注意:imgageMagickインストールパッケージ、sudo apt-get install imagemagemagic 2を実行し、androidに付属するrgb 2565ツールをコンパイルします.そのパスは$ANDROID_です.HOME/build/tools/rgb 2565上(gcc-O 2-Wall-Wno-unused-parameter-o rgb 2565 to 565.c)3、rawファイルをrle 565形式変換(rgb 2565-rleinitlogo.rle)最後にinitlogo.rleファイルをルートファイルシステムにパッケージすればよい
 
$ convert -depth 8 splash.png rgb:splash.raw
# Make sure it is 460800 bytes long!
$ rgb2565 < splash.raw > splash.raw565
# Triple-check size before flashing! 307200 bytes
$ fastboot flash splash1 g1-splash.raw565
$ fastboot reboot