-
Notifications
You must be signed in to change notification settings - Fork 2
/
imageCompressToJpg.sh
executable file
·44 lines (36 loc) · 1.42 KB
/
imageCompressToJpg.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
42
43
44
#!/bin/bash
source @includes.sh
echo '###################################################'
echo '# Description: Compress an image to jpg, with a specified quality'
echo '# Usage: $ ./imageCompressToJpg.sh /path/to/image.png 85'
echo '# Param 1: Image file'
echo '# Param 2: JPG quality (0-100)'
echo '# Requires: imagemagick, jpegoptim'
echo '###################################################'
echoNewline
################################################################################
################################################################################
# check parameters
if [[ $1 == "" ]] ; then
echoError "1st arg must be an image"
exit 1
fi
if [[ $2 -eq 0 ]] ; then
echoError "2nd arg must be compression quality"
exit 1
fi
################################################################################
################################################################################
# get filename
filename=$1
extension="${filename##*.}"
outputFile="$1.compressed.$2.jpg"
# do conversion
convert "$1" -sampling-factor 4:2:0 -strip -quality $2 -interlace JPEG -colorspace RGB "$outputFile"
# and do lossless compression
jpegoptim "$outputFile"
################################################################################
################################################################################
# complete
echoSuccess "Compressed jpg at $2% quality: $outputFile"
# say Image compressed at $2 percent