aboutsummaryrefslogtreecommitdiffstats
path: root/make-image-header.sh
blob: 63860380264f690c7a9ad014f0a2110f9af4d395 (plain)
1
2
3
4
5
6
7
#!/bin/sh
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