Last active
August 29, 2015 14:08
-
-
Save czyang/c2672eed208a7b0b99c9 to your computer and use it in GitHub Desktop.
This bash script use ImageMagick trim the transparent part of the images in a directory.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script need ImageMagick | |
SAVEIFS=$IFS | |
IFS=$(echo -en "\n\b") | |
for file in *.png | |
do | |
echo "trim: $file" | |
convert $file -trim $file | |
done | |
IFS=$SAVEIFS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment