nebula/tools/png2header.sh

11 lines
199 B
Bash
Raw Normal View History

2024-08-26 17:37:07 +02:00
#!/bin/bash
pngcrush
if [ $? -ne 0 ]; then
echo "no pngcrush, install with your package manager"
exit 1
fi
pngcrush -q -rem alla -brute $1 $(basename $2 .h).png
xxd -i $(basename $2 .h).png > $2