高通8x12平台开机画面制作工具

你可能在网上看到很到关于手动更换手机开机图片的文章,想想自己的开机画面是小两口,好基友的照片多么个性啊。但是你有没有发现,网上下载的什么“一键生成”之类的,在你的手机上不能用啊,( ⊙ o ⊙ )是的,至少我手中的是这个样子的,有不少网上下载的实际上都是用ffmpeg.exe制作的,我没研究过,但是看到mpeg字眼,肯定跟图像等多媒体格式相关。到底你的手机开机画面怎么做,这个完全取决于你手机的bootloader中怎么解析了,所以网上什么一键制作等都是特定机型,并不通用的。

在解决这个需求时,我只知道Python是一种脚本,我甚至不知道如何用,用在哪里,环境样子如何!只能凭经验摸索,再找度娘,能看懂意思。

好了,我手里开发的机器,开机图片一般都是在ubuntu环境下用python脚本制作的.

msm8x12\device\qcom\common\display\logo\logo_gen.py如下:

[python] view plain copy
  1. #===========================================================================
  2. #  This script read the logo png and creates the logo.img
  3. # when          who     what, where, why
  4. # --------      ---     -------------------------------------------------------
  5. # 2013-04       QRD     init
  6. # Environment requirement:
  7. #     Python + PIL
  8. #     PIL install:
  9. #         (ubuntu)  sudo apt-get install python-imaging
  10. #         (windows) (http://www.pythonware.com/products/pil/)
  11. # limit:
  12. #    the logo png file's format must be:
  13. #      a Truecolour with alpha: each pixel consists of four samples,
  14. #         only allow 8-bit depeths: red, green, blue, and alpha.
  15. #      b Truecolour: each pixel consists of three samples,
  16. #         only allow 8-bit depeths: red, green, and blue.
  17. # description:
  18. #    struct logo_header {
  19. #       unsigned char[8]; // "SPLASH!!"
  20. #       unsigned width;   // logo's width, little endian
  21. #       unsigned height;  // logo's height, little endian
  22. #       unsigned char reserved[512-16];
  23. #    };
  24. #    the logo Image layout:
  25. #       logo_header + BGR RAW Data
  26. # ===========================================================================*/
  27. import sys,os
  28. import struct
  29. import StringIO
  30. from PIL import Image
  31. ## get header
  32. def GetImgHeader(size):
  33. SECTOR_SIZE_IN_BYTES = 512   # Header size
  34. header = [0 for i in range(SECTOR_SIZE_IN_BYTES)]
  35. width, height = size
  36. # magic
  37. header[0:7] = [ord('S'),ord('P'), ord('L'), ord('A'),
  38. ord('S'),ord('H'), ord('!'), ord('!')]
  39. # width
  40. header[8] = ( width        & 0xFF)
  41. header[9] = ((width >> 8 ) & 0xFF)
  42. header[10]= ((width >> 16) & 0xFF)
  43. header[11]= ((width >> 24) & 0xFF)
  44. # height
  45. header[12]= ( height        & 0xFF)
  46. header[13]= ((height >>  8) & 0xFF)
  47. header[14]= ((height >> 16) & 0xFF)
  48. header[15]= ((height >> 24) & 0xFF)
  49. output = StringIO.StringIO()
  50. for i in header:
  51. output.write(struct.pack("B", i))
  52. content = output.getvalue()
  53. output.close()
  54. # only need 512 bytes
  55. return content[:512]
  56. ## get png raw data : BGR Interleaved
  57. def CheckImage(mode):
  58. if mode == "RGB" or mode == "RGBA":
  59. return
  60. print "error: need RGB or RGBA format with 8 bit depths"
  61. sys.exit()
  62. def GetImageBody(img):
  63. color = (0, 0, 0)
  64. if img.mode == "RGB":
  65. img.load()
  66. r, g, b = img.split()
  67. if img.mode == "RGBA":
  68. background = Image.new("RGB", img.size, color)
  69. img.load()
  70. background.paste(img, mask=img.split()[3]) # 3 is the alpha channel
  71. r, g, b = background.split()
  72. return Image.merge("RGB",(b,g,r)).tostring()
  73. ## make a image
  74. def MakeLogoImage(logo, out):
  75. img = Image.open(logo)
  76. CheckImage(img.mode)
  77. file = open(out, "wb")
  78. file.write(GetImgHeader(img.size))
  79. file.write(GetImageBody(img))
  80. file.close()
  81. ## mian
  82. def ShowUsage():
  83. print " usage: python logo_gen.py [logo.png]"
  84. def GetPNGFile():
  85. infile = "logo.png" #default file name
  86. num = len(sys.argv)
  87. if num > 2:
  88. ShowUsage()
  89. sys.exit(); # error arg
  90. if num == 2:
  91. infile = sys.argv[1]
  92. if os.access(infile, os.R_OK) != True:
  93. ShowUsage()
  94. sys.exit(); # error file
  95. return infile
  96. if __name__ == "__main__":
  97. MakeLogoImage(GetPNGFile(), "splash.img")
  98. <

说明中表示用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,出错喽,

高通8x12平台开机画面制作工具

为啥ubuntu与windows下同一脚本运行不同呢?!

r, g, b = img.split()这是出错的地方,'NoneType' 感觉像空值造成的,

经网上查询,在脚本中出错的上方添加img.load()即可,如下

。。。

img.load()
        r, g, b = img.split()

。。。

编译还是错了,如下

高通8x12平台开机画面制作工具

识别错误!用NotePad++打开脚本,再打开“显示所有字符”如下

高通8x12平台开机画面制作工具

看见么╮(╯_╰)╭,其他对齐用的是空格,img.loader()用的却是Tab,改成空格,运行结果正确!

好了 ,我要做的是可执行文件,脱离python环境,不急,前面不是装了py2exe库么,它就是干这个的。

在logo_gen.py同目录下,新建一个名为mysetup.py设置脚本,内容为:

[python] view plain copy
  1. # mysetup.py
  2. from distutils.core import setup
  3. import py2exe
  4. setup(console=["logo_gen.py"])

其中中括号内就是你要转换为exe的python脚本名,上面两行是必须这样写的。至于设置脚本的语法,上网搜去吧,我也不知道,暂时需要到哪我就用到哪。

cmd下运行python mysetup.py py2exe,会出现许多打印信息,最终生成2个文件夹build和dist,如下图

高通8x12平台开机画面制作工具

这个dist目录就是最终我的需求,可执行文件及其依赖都在这,将png图面改名为logo.png放到dist目录,进入dist目录,双击运行logo_gen.exe你会看见生成了splash.img,这就是开机图片要烧写的镜像。

上一篇:JavaWeb开发之Servlet


下一篇:GJM : Unity3D 高通Vuforia SDK AR 开发