forked from siphomateke/PyBOW
-
Notifications
You must be signed in to change notification settings - Fork 9
/
fix_pngs.sh
41 lines (26 loc) · 1.21 KB
/
fix_pngs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
################################################################################
# simple png file fixer script using pngcrush
# (c) 2018 Toby Breckon, Durham University, UK
################################################################################
# check for command line argument
if (test $# -ne 1)
then
echo "usage: sh ./fix_pngs.sh /path/to/dataset/files"
exit 1
fi
################################################################################
# set this script to fail on error
set -e
################################################################################
# check for required commands to perform fix
(command -v pngcrush | grep pngcrush > /dev/null) ||
(echo "Error: pngcrush command not found, cannot fix!";
echo "install from your package manager or from https://pmt.sourceforge.io/pngcrush/";
exit 1)
################################################################################
# go the right place to write
cd $1
################################################################################
# perform fix in place
for i in `find * | grep png`; do pngcrush -fix -force $i tmp.png; mv tmp.png $i;done
################################################################################