你可能在网上看到很到关于手动更换手机开机图片的文章,想想自己的开机画面是小两口,好基友的照片多么个性啊。但是你有没有发现,网上下载的什么“一键生成”之类的,在你的手机上不能用啊,( ⊙ o ⊙ )是的,至少我手中的是这个样子的,有不少网上下载的实际上都是用ffmpeg.exe制作的,我没研究过,但是看到mpeg字眼,肯定跟图像等多媒体格式相关。到底你的手机开机画面怎么做,这个完全取决于你手机的bootloader中怎么解析了,所以网上什么一键制作等都是特定机型,并不通用的。
在解决这个需求时,我只知道Python是一种脚本,我甚至不知道如何用,用在哪里,环境样子如何!只能凭经验摸索,再找度娘,能看懂意思。
好了,我手里开发的机器,开机图片一般都是在ubuntu环境下用python脚本制作的.
msm8x12\device\qcom\common\display\logo\logo_gen.py如下:
- #===========================================================================
- # This script read the logo png and creates the logo.img
- # when who what, where, why
- # -------- --- -------------------------------------------------------
- # 2013-04 QRD init
- # Environment requirement:
- # Python + PIL
- # PIL install:
- # (ubuntu) sudo apt-get install python-imaging
- # (windows) (http://www.pythonware.com/products/pil/)
- # limit:
- # the logo png file's format must be:
- # a Truecolour with alpha: each pixel consists of four samples,
- # only allow 8-bit depeths: red, green, blue, and alpha.
- # b Truecolour: each pixel consists of three samples,
- # only allow 8-bit depeths: red, green, and blue.
- # description:
- # struct logo_header {
- # unsigned char[8]; // "SPLASH!!"
- # unsigned width; // logo's width, little endian
- # unsigned height; // logo's height, little endian
- # unsigned char reserved[512-16];
- # };
- # the logo Image layout:
- # logo_header + BGR RAW Data
- # ===========================================================================*/
- import sys,os
- import struct
- import StringIO
- from PIL import Image
- ## get header
- def GetImgHeader(size):
- SECTOR_SIZE_IN_BYTES = 512 # Header size
- header = [0 for i in range(SECTOR_SIZE_IN_BYTES)]
- width, height = size
- # magic
- header[0:7] = [ord('S'),ord('P'), ord('L'), ord('A'),
- ord('S'),ord('H'), ord('!'), ord('!')]
- # width
- header[8] = ( width & 0xFF)
- header[9] = ((width >> 8 ) & 0xFF)
- header[10]= ((width >> 16) & 0xFF)
- header[11]= ((width >> 24) & 0xFF)
- # height
- header[12]= ( height & 0xFF)
- header[13]= ((height >> 8) & 0xFF)
- header[14]= ((height >> 16) & 0xFF)
- header[15]= ((height >> 24) & 0xFF)
- output = StringIO.StringIO()
- for i in header:
- output.write(struct.pack("B", i))
- content = output.getvalue()
- output.close()
- # only need 512 bytes
- return content[:512]
- ## get png raw data : BGR Interleaved
- def CheckImage(mode):
- if mode == "RGB" or mode == "RGBA":
- return
- print "error: need RGB or RGBA format with 8 bit depths"
- sys.exit()
- def GetImageBody(img):
- color = (0, 0, 0)
- if img.mode == "RGB":
- img.load()
- r, g, b = img.split()
- if img.mode == "RGBA":
- background = Image.new("RGB", img.size, color)
- img.load()
- background.paste(img, mask=img.split()[3]) # 3 is the alpha channel
- r, g, b = background.split()
- return Image.merge("RGB",(b,g,r)).tostring()
- ## make a image
- def MakeLogoImage(logo, out):
- img = Image.open(logo)
- CheckImage(img.mode)
- file = open(out, "wb")
- file.write(GetImgHeader(img.size))
- file.write(GetImageBody(img))
- file.close()
- ## mian
- def ShowUsage():
- print " usage: python logo_gen.py [logo.png]"
- def GetPNGFile():
- infile = "logo.png" #default file name
- num = len(sys.argv)
- if num > 2:
- ShowUsage()
- sys.exit(); # error arg
- if num == 2:
- infile = sys.argv[1]
- if os.access(infile, os.R_OK) != True:
- ShowUsage()
- sys.exit(); # error file
- return infile
- if __name__ == "__main__":
- MakeLogoImage(GetPNGFile(), "splash.img")
- <
说明中表示用python和PIL(python Image Library)制作,PIL是另外下载安装的库,图片资源必须为png,且色深为8-bit的RGB或者RGBA格式。
生成的splash.img格式为文件头+BGR原始数据:文件头如上面结构体一样排列,BGR就是将原B,R通道数据交换,把这样的数据顺序存在另一个文件中改名为splash.img即可。
在这个脚本下还有个脚本使用说明:python ./logo_gen.py snapdragon.png,实际上看代码,如果不指定源png图片,会自动寻找logo.png。
现在需求来了,小客户很多,他们需求机器少,但却要求换他们的开机logo,这个工作需要他们来做,难道客户要去安装ubuntu再去装python环境再去做?那不行,客户不是开发者,于是想办法在windows系统下做个脱离环境的工具。要么根据上面python的代码解析函数意义,再用C代码去模拟出来,但是要点时间,于是上网搜搜,有个第三方python库叫py2exe,它能把python脚本连同各种依赖打包在一个文件夹下,这样就脱离环境了。我的做法具体为:
windows XP系统安装,
python2.7.3
py2exe-0.6.9.win32-py2.7
PIL-1.1.7.win32-py2.7下载地址http://www.pythonware.com/products/pil/index.htm
软件怎么装不说了。其中后两个是python的库,下载完直接下一步安装,会直接安装到python安装目录下的Lib\site-packages。第二个py2exe下载时要看清与python版本必须一致,不然不给安装的。另python安装时把其安装的路径加入到环境变量Path,这样任何地方才能识别到python。
windows下环境都弄好了,在CMD下运行python logo_gen xxx.png,出错喽,
为啥ubuntu与windows下同一脚本运行不同呢?!
r, g, b = img.split()这是出错的地方,'NoneType' 感觉像空值造成的,
经网上查询,在脚本中出错的上方添加img.load()即可,如下
。。。
img.load()
r, g, b = img.split()
。。。
编译还是错了,如下
识别错误!用NotePad++打开脚本,再打开“显示所有字符”如下
看见么╮(╯_╰)╭,其他对齐用的是空格,img.loader()用的却是Tab,改成空格,运行结果正确!
好了 ,我要做的是可执行文件,脱离python环境,不急,前面不是装了py2exe库么,它就是干这个的。
在logo_gen.py同目录下,新建一个名为mysetup.py设置脚本,内容为:
- # mysetup.py
- from distutils.core import setup
- import py2exe
- setup(console=["logo_gen.py"])
其中中括号内就是你要转换为exe的python脚本名,上面两行是必须这样写的。至于设置脚本的语法,上网搜去吧,我也不知道,暂时需要到哪我就用到哪。
cmd下运行python mysetup.py py2exe,会出现许多打印信息,最终生成2个文件夹build和dist,如下图
这个dist目录就是最终我的需求,可执行文件及其依赖都在这,将png图面改名为logo.png放到dist目录,进入dist目录,双击运行logo_gen.exe你会看见生成了splash.img,这就是开机图片要烧写的镜像。