Skip to content

Instantly share code, notes, and snippets.

@czyang
Last active August 29, 2015 14:08
Show Gist options
  • Save czyang/c2672eed208a7b0b99c9 to your computer and use it in GitHub Desktop.
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.
#!/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