首页 > 代码库 > 使用xxd命令把png图片转成c语言使用的数组

使用xxd命令把png图片转成c语言使用的数组

#!/bin/bashimage_list=$(ls *.png)for imag in ${image_list}do    if test -f $imag    then        xxd -i  ${imag} >> test.h    fidone

参考:http://www.cnblogs.com/killkill/archive/2010/06/23/1763785.html