-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathimageCropTransparentPixelsDir.sh
More file actions
executable file
·34 lines (29 loc) · 1.11 KB
/
imageCropTransparentPixelsDir.sh
File metadata and controls
executable file
·34 lines (29 loc) · 1.11 KB
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
#!/bin/bash
source @includes.sh
echo '###################################################'
echo '# Description: Crops directory of images to remove transparent pixels'
echo '# Usage: $ ./imageCropTransparentPixelsDir.sh /path/to/files'
echo '# Param 1: Directory of images'
echo '# Requires: Imagemagick'
echo '###################################################'
echoNewline
################################################################################
################################################################################
# check parameters
if [[ $1 == "" ]] ; then
echoError '1st arg must be a directory'
exit 1
fi
################################################################################
################################################################################
# loop through files
for file in "$1"/*png
do
if [ -f $file ]; then
./imageCropTransparentPixels.sh "$file"
fi
done
################################################################################
################################################################################
# complete
echoSuccess "Cropped files in $1"