aboutsummaryrefslogtreecommitdiffstats
path: root/make-image-header.sh
blob: d7cf67c857837e178cd2c53f8eb42ff30f54b2d0 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

imageh=`basename $1 .png`-img.h
name="${2}_IMG"
gdk-pixbuf-csource --macros $1 > $imageh.tmp
sed -e "s/MY_PIXBUF/${name}/g" -e "s/guint8/uint8/g" $imageh.tmp > $imageh && rm $imageh.tmp