Skip to content

Instantly share code, notes, and snippets.

@faizal2007
Last active December 7, 2017 20:30
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save faizal2007/9399496 to your computer and use it in GitHub Desktop.
Save faizal2007/9399496 to your computer and use it in GitHub Desktop.
Bash Image Optimization for web

imgoptim

This script is use to optimize image for web

  • This script only optimize jpg and png image
  • Currently this script only support debian
./imgoptim
##
# @author freakie guy <freakie2007@gmail.com>
# @package Batch Optimize Image for web performance
# @requirement jpegoptim, optipng
##
#
# Folder path
#
FOLDER="/var/www/tank-and-kinis/image/data/"
#
# OS check
#
DEBIAN="/etc/debian_version"
#
# check jpeg cmd if not install
#
jpegoptimize() {
if type -P jpegoptim &>/dev/null ; then
for f in *.jpg
do
jpegoptim "$f"
done
else
apt-get install jpegoptim
jpegoptimize
fi
}
#
# check jpeg cmd if not install
#
pngoptimize() {
if type -P optipng &>/dev/null ; then
for f in *.png
do
optipng -o7 -preserve "$f"
done
else
apt-get install optipng
pngoptimize
fi
}
if [ -f "$DEBIAN" ]
then
cd $FOLDER
echo "jpeg Optimization start ...."
jpegoptimize
echo -e "jpeg Done.\n"
echo "png Optimization start ...."
pngoptimize
echo "png Done."
cd -
else
echo "Non Supported OS"
fi
The MIT License (MIT)
Copyright (c) 2013 wackoen
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment