-
Notifications
You must be signed in to change notification settings - Fork 28
/
adept-jpeg.sh
executable file
·518 lines (471 loc) · 24.2 KB
/
adept-jpeg.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
#!/usr/bin/env bash
###############################################################################
#
# Bash script to automate adaptive JPEG compression using common CLI tools
#
# Usage: bash adept.sh /path/to/image.jpg
#
###############################################################################
#
# Brief overview of the mode of operation:
#
# The input JPG gets sliced into tiles, sized as a multiple of 8 due to the
# nature of JPG compression. The image is also run through a saliency
# detection algorithm and its resulting output further reduced to a
# 2-color black+white PNG.
#
# This bi-color PNG is ideal to measure tiles' gray channel mean value and use
# it as a single integer indicator to judge its perceivable complexity.
#
# Areas with low complexity contents are then exposed to heavier compression.
# At reassemlby, this leads to savings in image bytesize while maintaining
# good visual quality because no compression artefacts occur in areas of
# high-complexity or sharp contrasts.
#
###############################################################################
# Tools that need to be pre-installed:
#
# * Maximum Symmetric Surround Saliency Algorithm Binary
# http://github.com/technopagan/mss-saliency
#
# * ImageMagick >= v.6.6
#
# * MozJPEG
# http://github.com/mozilla/mozjpeg
# Expects Mozjpeg to be available under 'mozjpeg', e.g. via symlink
#
# * JPEGRescan Perl Script for lossless JPG compression
# http://github.com/kud/jpegrescan
#
# Note: Additonal tools are required to run Adept, such as "bc",
# "find", "mv", "rm" and Bash 3.x. As all of these tools are provided by lsbcore, core-utils
# or similar default packages, we can expect them to be always available.
#
###############################################################################
#
# This software is published under the BSD licence 3.0
#
# Copyright (c) 2013-2015, Tobias Baldauf
# All rights reserved.
#
# Mail: [email protected]
# Web: http://who.tobias.is/
# Twitter: @tbaldauf
#
# Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
#
# * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
###############################################################################
HELP="adept-jpeg.sh is a Bash script to automate adaptive JPEG compression using common CLI tools.
USAGE:
$0 [options] path/to/file.jpg
OPTIONS:
-h Displays this help message.
-c string Name compressor: imagemagick (default), cjpeg, jpegoptim, jpge, mozcjpeg.
-q 0..100 Compression rate of areas considered as important, default value is 'inherit'.
-Q 0..100 Compression rate of areas deemed suitable for high compression, default is 69.
-s suffix This will append 'suffix' to filenames. Default value is '_adept_compress'.
-t integer tile size, accepted values are 8,16,32,64,128 and 256. The smaller the value, the better results
but might take signifficantly more time to process. The default value is 'autodetect'.
"
###############################################################################
# USER CONFIGURABLE PARAMETERS
###############################################################################
# Default JPG quality setting, either inherited or defined as an integer of 0-100
# Default: inherit
DEFAULTCOMPRESSIONRATE="inherit"
# JPEG quality setting for areas of the image deemed suitable for high compression in an integer of 0-100
# Default: 69
HIGHCOMPRESSIONRATE="69"
# Suffix string to attach to the output JPG filename, e.g. '_adept_compress'
# If deliberatly set empty (''), the input JPG will be replaced with the new compressed JPG
OUTPUTFILESUFFIXBEGIN="_adept_compress"
# Square dimensions for all temporary tiles. Tile size heavily influences compression efficiency at the cost of runtime performance
# E.g. a tile size of 8 yields maximum compression results while taking several minutes of runtime
# If you chose to manually adjust tile size, only use multiples of 8 (8/16/32/64/128/256)
# Default: autodetect
TILESIZE="autodetect"
# Jpeg compressor
# Default: imagemagick
JPEGCNAME="imagemagick"
###############################################################################
# READ COMMAND LINE USER PARAMETERS
###############################################################################
while getopts ":c:q:Q:s:t:h" opt
do
case "$opt" in
c) JPEGCNAME=$OPTARG
;;
q) DEFAULTCOMPRESSIONRATE=$OPTARG
;;
Q) HIGHCOMPRESSIONRATE=$OPTARG
;;
s) OUTPUTFILESUFFIXBEGIN=$OPTARG
;;
t) TILESIZE=$OPTARG
;;
h) echo "${HELP}"
exit 0
;;
\?) echo "Invalid option: -$OPTARG" >&2
exit 1
;;
:) echo "Option -$OPTARG requires an argument." >&2
exit 1
;;
esac
done
if [ -z "$JPEGCNAME" ]
then
JPEGCNAME="imagemagick"
elif [ "$JPEGCNAME" != "cjpeg" -a "$JPEGCNAME" != "jpegoptim" -a "$JPEGCNAME" != "jpge" -a "$JPEGCNAME" != "mozcjpeg" ]
then
JPEGCNAME="imagemagick"
fi
OUTPUTFILESUFFIX="${OUTPUTFILESUFFIXBEGIN}_${JPEGCNAME}"
echo "$0 options: $DEFAULTCOMPRESSIONRATE, $HIGHCOMPRESSIONRATE, $TILESIZE, $OUTPUTFILESUFFIX"
shift "$(($OPTIND - 1))"
###############################################################################
# RUNTIME VARIABLES (usually do not require tuning by user)
###############################################################################
# Accept the jpg filename as a parameter
FILE="$1"
if [ -z "$FILE" ]
then
echo "${HELP}"
exit 0
fi
# Retrieve clean filename without extension
CLEANFILENAME=${FILE%.jp*g}
# Retrieve only the file extension
FILEEXTENSION=${FILE##*.}
# Retrieve clean path directory without filename
CLEANPATH="${FILE%/*}"
# If the JPEG is in the same direcctory as Adept, empty the path variable
# Or if it is set, make sure the path has a trailing slash
if [ "$CLEANPATH" == "$FILE" ]; then
CLEANPATH=""
else
CLEANPATH="$CLEANPATH/"
fi
# Storage location for all temporary files during runtime
# Use locations like /dev/shm (/run/shm/ in Ubuntu) to save files in Shared Memory Space (RAM) to avoid disk i/o troubles
TILESTORAGEPATH="/dev/shm/"
# Check if the directory for temporary image storage during runtime actually exists (honoring symlinks)
# In case it does not, fall back to using "/tmp/" because it is very likely available on all Unix systems
if [ ! -d "$TILESTORAGEPATH" ]; then
TILESTORAGEPATH="/tmp/"
fi
# Set locales to C (raw uninterpreted byte sequence)
# to avoid Illegal byte sequence errors and invalid number errors
export LANG=C LC_NUMERIC=C LC_COLLATE=C
###############################################################################
# MAIN PROGRAM
###############################################################################
prepwork () {
find_tool IDENTIFY_COMMAND identify
find_tool CONVERT_COMMAND convert
find_tool MONTAGE_COMMAND montage
if [ "${JPEGCNAME}" = "cjpeg" ]
then
find_tool JPEGCOMPRESSION_COMMAND cjpeg
find_tool JPEGDECOMPRESSION_COMMAND djpeg
elif [ "${JPEGCNAME}" = "imagemagick" ]
then
find_tool MOGRIFY_COMMAND mogrify
elif [ "${JPEGCNAME}" = "jpegoptim" ]
then
find_tool JPEGOPTIM_COMMAND jpegoptim
elif [ "${JPEGCNAME}" = "jpge" ]
then
find_tool JPEGCOMPRESSION_COMMAND jpge
elif [ "${JPEGCNAME}" = "mozcjpeg" ]
then
find_tool JPEGCOMPRESSION_COMMAND mozcjpeg
fi
find_tool JPEGRESCAN_COMMAND jpegrescan
find_tool SALIENCYDETECTOR_COMMAND SaliencyDetector
validate_image VALIDJPEG "${FILE}"
}
main () {
FILESIZE="$(stat -c %s ${FILE})"
echo "${FILESIZE} ${FILE}"
find_image_dimension IMAGEWIDTH "${FILE}" 'w'
find_image_dimension IMAGEHEIGHT "${FILE}" 'h'
optimize_tile_size TILESIZE ${TILESIZE} ${IMAGEWIDTH} ${IMAGEHEIGHT}
echo "size=${TILESIZE} ${IMAGEWIDTH} ${IMAGEHEIGHT}"
calculate_tile_count TILEROWS ${IMAGEHEIGHT} ${TILESIZE}
calculate_tile_count TILECOLUMNS ${IMAGEWIDTH} ${TILESIZE}
echo "tilecount=${TILEROWS}x${TILECOLUMNS}"
optimize_salient_regions_amount BLACKWHITETHRESHOLD "${FILE}"
echo "threshold=${BLACKWHITETHRESHOLD}"
${SALIENCYDETECTOR_COMMAND} -q -L0 -U${BLACKWHITETHRESHOLD} "${FILE}" "${TILESTORAGEPATH}${CLEANFILENAME##*/}_saliency_bw.png"
slice_image_to_ram "${FILE}" ${TILESIZE} ${TILESTORAGEPATH}
estimate_content_complexity_and_compress
reassemble_tiles_into_final_image "${FILESIZE}"
}
###############################################################################
# FUNCTIONS
###############################################################################
floatToInt() {
printf "%.0f\n" "$@"
}
# Find the proper handle for the required commandline tool
# This function can take an optional third parameter when being called to manually define the path to the CLI tool
function find_tool () {
# Define local variables to work with
local __result=$1
local __tool=$2
local __customtoolpath=$3
# Array of possible tool locations: name, name as ALL-CAPS, /usr/bin/name, /usr/local/bin/name and custom path
local __possibletoollocations=(${__tool} /usr/bin/${__tool} /usr/local/bin/${__tool} ${__customtoolpath})
# For each possible tool location, test if its actually available there
for i in "${__possibletoollocations[@]}"; do
local __commandlinetool=$(type -p $i)
# If 'type -p' returned something, we now have our proper handle
if [ "$__commandlinetool" ]; then
break
fi
done
# In case none of the given inputs works, apologize & quit
if [ ! "$__commandlinetool" ]; then
echo "Unable to find ${__tool}. Please ensure that it is installed. If necessary, set its CLI path+name in the find_tool function call and then retry."
exit 1
fi
# Return the result
eval $__result="'${__commandlinetool}'"
}
# Validate that we are working on an actual intact JPEG image before launch
function validate_image () {
# Define local variables to work with
local __result=$1
local __imagetovalidate=$2
# If the script is called without an input file, explain how to use it
# We don't "exit 1" here anymore because our unit tests source the script
# and would abort if "exit 1" was called
if [ ! -f "$__imagetovalidate" ]; then
local __validationresult=0
echo "Missing input JPEG. Usage: $0 /path/to/jpeg/image.jpg"
else
# Use IM identify to read the file magic of the input file to validate it's a JPEG
local __filemagic=$(${IDENTIFY_COMMAND} -format %m "$__imagetovalidate")
if [ "$__filemagic" == "JPEG" ] ; then
# Set a switch that it is ok to work on the input file, launching the main funtion
local __validationresult=1
fi
fi
# Return the result
eval $__result="'${__validationresult}'"
}
# Read width (%w) or height (%h) of the input image via IM identify
function find_image_dimension () {
# Define local variables to work with
local __result=$1
local __imagetomeasure=$2
local __dimensiontomeasure=$3
# Read the width or height of the input image into a global variable
local __imagedimension=$(${IDENTIFY_COMMAND} -format '%'${__dimensiontomeasure} ${__imagetomeasure})
# Return the result
eval $__result="'${__imagedimension}'"
}
# Tile size is the no.1 performance bottleneck for Adept, so it is important we pick an optimal tile size for the input image dimensions
# Also, the number of tiles to be recombined affects compression efficiency and salient areas within an image tend to have similar dimensional
# relations to total image size, so it makes sense to change tile size accordingly
function optimize_tile_size () {
# Define local variables to work with
local __result=$1
local __optimaltilesize=$2
local __currentimagewidth=$3
local __currentimageheight=$4
# The default "autodetect" setting causes Adept to find a suitable tile size according to image dimensions
if [ "$TILESIZE" == "autodetect" ] ; then
# Pick the smaller of the two dimensions of the image as the decisive integer for tile size
local __decisivedimension=${__currentimageheight}
if (( $IMAGEWIDTH < $__decisivedimension )); then
__decisivedimension=${__currentimagewidth}
fi
# For a series of sensible steps, change the tile size accordingly
if (( $__decisivedimension <= 512 )); then
__optimaltilesize="8"
elif (( $__decisivedimension >= 513 )) && (( $__decisivedimension <= 1024 )); then
__optimaltilesize="16"
elif (( $__decisivedimension >= 1025 )); then
__optimaltilesize="32"
else
__optimaltilesize="8"
fi
# In case the user has changed the configuration from "autodetect" to a custom setting, respect & return this instead
else
__optimaltilesize=${TILESIZE}
fi
# Return the result
eval $__result="'${__optimaltilesize}'"
}
function optimize_salient_regions_amount () {
# Define local variables to work with
local __result=$1
local __imagetomeasure=$2
local __lower_bound="0"
local __upper_bound="100"
local __current_threshold=$(( $__upper_bound/2 ))
local __mean_graychannel="0"
# Run the saliency detector function to retrieve the Median gray channel
calculate_salient_regions_amount __mean_graychannel "${__imagetomeasure}" ${__upper_bound}
__mean_graychannel=$(floatToInt $__mean_graychannel)
# If we didn't hit the sweet spot on our initial run, keep homing in on the ideal threshold value using binary search
while ( (( $__mean_graychannel > 40 )) || (( $__mean_graychannel < 20 )) ) && (( $__lower_bound < $__upper_bound-1 )); do
# If the Median is too low, reduce the upper threshold value to get more white pixels
if (( $__mean_graychannel < 20 )); then
__upper_bound=${__current_threshold}
# Else if the Median is too high, raise the threshold to get fewer white pixels
elif (( $__mean_graychannel > 40 )); then
__lower_bound=${__current_threshold}
fi
# Calculate the new middle threshold
__current_threshold=$(( ($__upper_bound-$__lower_bound)/2+$__lower_bound ))
# Rerun the saliency detector with a better estimated threshold value
calculate_salient_regions_amount __mean_graychannel "${__imagetomeasure}" ${__current_threshold}
__mean_graychannel=$(floatToInt $__mean_graychannel)
done
# Return result
eval $__result="'${__current_threshold}'"
}
# Measure the black/white median of a saliency mapped image to use it as an indicator for successfull saliency mapped contents
function calculate_salient_regions_amount () {
# Define local variables to work with
local __result=$1
local __imagetomeasure=$2
local __threshold=$3
# Use the MSS Saliency Detector with custom thresholds to generate a black+white salient map of an input image
# Then use the gray channel's mean as a single indicator to judge how much of the image's contents have been marked as salient
local __salient_amount=$(${SALIENCYDETECTOR_COMMAND} -q -L0 -U${__threshold} "${__imagetomeasure}" "png:-" | ${IDENTIFY_COMMAND} -channel Gray -format "%[fx:255*mean]" -)
echo "salient=${__salient_amount}"
# Return result
eval $__result="'${__salient_amount}'"
}
# Slice the input image into equally sized tiles
function slice_image_to_ram () {
# Define local variables to work with
local __filetoprocess=$1
local __currenttilesize=$2
local __currenttilestoragepath=$3
echo -n "slice to ram..."
# If $DEFAULTCOMPRESSIONRATE is set to "inherit", discover the input JPG quality
if [ "$DEFAULTCOMPRESSIONRATE" == "inherit" ] ; then
DEFAULTCOMPRESSIONRATE=$(${IDENTIFY_COMMAND} -format "%Q" ${__filetoprocess})
fi
echo " ok."
${CONVERT_COMMAND} "$__filetoprocess" -strip -quality "${DEFAULTCOMPRESSIONRATE}" -define jpeg:dct-method=default -crop "${__currenttilesize}"x"${__currenttilesize}" +repage +adjoin "${__currenttilestoragepath}tile_tmp_%06d_${CLEANFILENAME##*/}.${FILEEXTENSION}"
}
# For each tile, test if it is suitable for higher compression and if so, proceed
function estimate_content_complexity_and_compress () {
# Set up a counter so we keep track of the full name of the current temporary tile to work on
local __currenttilecount=0
# Let's create a walker that iterates over the sobeled and b/w reduced full size image
# This way, the edge detection happens only in memory and does not need additional tiles to be created on the filesystem
# The walker inputs X+Y coordinates and only analyses a single tile's size on that spot within the image
# The exception to this being when we are close to the image's end and we have to reduce tile size to whatever is left vertically or horizontally
echo -n "estimate content complexity and compress..."
for((y=0;y<$TILEROWS;y++)) ; do
for((x=0;x<$TILECOLUMNS;x++)) ; do
# Reset tile dimensions for each run because we need to check them anew each time
local __currenttileheight=${TILESIZE}
local __currenttilewidth=${TILESIZE}
# Prepend leading zeros to the counter so the integer matches the numbers handed out to the filename by ImageMagick
__currenttilecount=$(printf "%06d" $__currenttilecount);
# If we are nearing the end of the image height, reduce tile size to whatever is left vertically
if (( $y + 1 == $TILEROWS )) && (( $TILEROWS * $__currenttileheight > $IMAGEHEIGHT )); then
__currenttileheight=$(( (($y+1)*$TILESIZE) - $IMAGEHEIGHT ))
__currenttilerow=$(( $y+1 ))
fi
# And if we are nearing the end of the image width, reduce tile size to whatever is left horizontally
if (( $x + 1 == $TILECOLUMNS )) && (( $TILECOLUMNS * $__currenttilewidth > $IMAGEWIDTH )); then
__currenttilewidth=$(( (($x+1)*$TILESIZE) - $IMAGEWIDTH ))
__currenttilecolumn=$(( $x+1 ))
fi
# Run identify on the 2-color limited palette PNG8 to retrieve the mean for the gray channel
# In this case we are using coordinates and dynamic tile sizes according to the walker logic we have created in order to dynamically view a specific image area without creating actual tiles for it
# The result will be a decimal number (or zero) by which we can judge the visible object complexity in the current tile
local __currentbwmedian=$(identify -size "${IMAGEWIDTH}"x"${IMAGEHEIGHT}" -channel Gray -format "%[fx:255*mean]" "${TILESTORAGEPATH}${CLEANFILENAME##*/}_saliency_bw.png["${__currenttilewidth}"x"${__currenttileheight}"+$(echo $((${x}*${__currenttilewidth})))+$(echo $((${y}*${__currenttileheight})))]")
# If the gray channel median is below a defined threshold, the visible area in the current tile is very likely simple & rather monotonous and can safely be exposed to a higher compression rate
# Untouched JPGs simply stay at the defined default quality setting ($DEFAULTCOMPRESSIONRATE)
if (( $(echo "$__currentbwmedian < 0.825" | bc) )); then
# We experimented with blurring/smoothing of tiles here to enhance JPEG compression, but results were insignificant
if [ "${JPEGCNAME}" = "cjpeg" ]
then
${JPEGDECOMPRESSION_COMMAND} "${TILESTORAGEPATH}"tile_tmp_"${__currenttilecount}"_"${CLEANFILENAME##*/}"."${FILEEXTENSION}" | ${JPEGCOMPRESSION_COMMAND} -progressive -optimize -quality ${HIGHCOMPRESSIONRATE} -outfile "${TILESTORAGEPATH}"tile_tmp_"${__currenttilecount}"_"${CLEANFILENAME##*/}"_cjpeg."${FILEEXTENSION}"
mv "${TILESTORAGEPATH}"tile_tmp_"${__currenttilecount}"_"${CLEANFILENAME##*/}"_cjpeg."${FILEEXTENSION}" "${TILESTORAGEPATH}"tile_tmp_"${__currenttilecount}"_"${CLEANFILENAME##*/}"."${FILEEXTENSION}"
elif [ "${JPEGCNAME}" = "imagemagick" ]
then
${MOGRIFY_COMMAND} -quality ${HIGHCOMPRESSIONRATE} "${TILESTORAGEPATH}"tile_tmp_"${__currenttilecount}"_"${CLEANFILENAME##*/}"."${FILEEXTENSION}"
elif [ "${JPEGCNAME}" = "jpegoptim" ]
then
${JPEGOPTIM_COMMAND} --max=${HIGHCOMPRESSIONRATE} --strip-all --strip-iptc --strip-icc "${TILESTORAGEPATH}"tile_tmp_"${__currenttilecount}"_"${CLEANFILENAME##*/}"."${FILEEXTENSION}" >/dev/null 2>/dev/null
elif [ "${JPEGCNAME}" = "jpge" ]
then
${JPEGCOMPRESSION_COMMAND} "${TILESTORAGEPATH}"tile_tmp_"${__currenttilecount}"_"${CLEANFILENAME##*/}"."${FILEEXTENSION}" "${TILESTORAGEPATH}"tile_tmp_"${__currenttilecount}"_"${CLEANFILENAME##*/}"_jpge."${FILEEXTENSION}" ${HIGHCOMPRESSIONRATE} > /dev/null
mv "${TILESTORAGEPATH}"tile_tmp_"${__currenttilecount}"_"${CLEANFILENAME##*/}"_jpge."${FILEEXTENSION}" "${TILESTORAGEPATH}"tile_tmp_"${__currenttilecount}"_"${CLEANFILENAME##*/}"."${FILEEXTENSION}"
elif [ "${JPEGCNAME}" = "mozcjpeg" ]
then
${JPEGCOMPRESSION_COMMAND} -progressive -optimize -quality ${HIGHCOMPRESSIONRATE} -outfile "${TILESTORAGEPATH}"tile_tmp_"${__currenttilecount}"_"${CLEANFILENAME##*/}"_mozjpeg."${FILEEXTENSION}" "${TILESTORAGEPATH}"tile_tmp_"${__currenttilecount}"_"${CLEANFILENAME##*/}"."${FILEEXTENSION}"
mv "${TILESTORAGEPATH}"tile_tmp_"${__currenttilecount}"_"${CLEANFILENAME##*/}"_mozjpeg."${FILEEXTENSION}" "${TILESTORAGEPATH}"tile_tmp_"${__currenttilecount}"_"${CLEANFILENAME##*/}"."${FILEEXTENSION}"
fi
fi
# As the last action within the loop, increment the counter for the processed tile number. Use Base10 because with the padding of leading zeros, Bash would interprete the integer as Base8 per default.
__currenttilecount=$(( 10#$__currenttilecount + 1 ))
done
done
echo " ${__currenttilecount} tile ok."
}
# For the reassembly of the image, we need the count of rows and columns of tiles that were created
function calculate_tile_count () {
# Define local variables to work with
local __result=$1
local __currentimagedimension=$2
local __currenttilesize=$3
# Make use of Bash's behaviour of rounding down to see if we're tilecount = integer + 1
local __tilecountroundeddown=$(( $__currentimagedimension / $__currenttilesize ))
# Check if we need to +1 our integer because the decimal is larger than the integer
if (( $__currenttilesize * $__tilecountroundeddown < $__currentimagedimension )); then
local __tilecount=$(( $__tilecountroundeddown + 1 ))
else
local __tilecount=${__tilecountroundeddown}
fi
# Return result
eval $__result="'${__tilecount}'"
}
# Now that we know the number of rows+columns, we use montage to recombine the now partially compressed tiles into a new coherant JPEG image
function reassemble_tiles_into_final_image () {
local __filesize="$1"
echo -n "final image..."
# Use montage to reassemble the individual, partially optimized tiles into a new consistent JPEG image
FILEOUT="${CLEANPATH}${CLEANFILENAME##*/}${OUTPUTFILESUFFIX}.${FILEEXTENSION}"
${MONTAGE_COMMAND} -quiet -strip -quality "${DEFAULTCOMPRESSIONRATE}" -mode concatenate -tile "${TILECOLUMNS}x${TILEROWS}" $(find "${TILESTORAGEPATH}" -maxdepth 1 -type f -name "tile_tmp_*_${CLEANFILENAME##*/}.${FILEEXTENSION}" | sort) "$FILEOUT" >/dev/null 2>/dev/null
# During montage reassembly, the resulting image received bytes of padding due to the way the JPEG compression algorithm works on tiles not sized as a multiple of 8
# So we run jpegrescan on the final image to losslessly remove this padding and make the output JPG progressive
${JPEGRESCAN_COMMAND} -q -s -i "${FILEOUT}" "${FILEOUT}"
# Cleanup temporary files
rm ${TILESTORAGEPATH}${CLEANFILENAME##*/}_saliency_bw.png
# We are using find to circumvent issues on Kernel based shell limitations when iterating over a large number of files with rm
find "${TILESTORAGEPATH}" -maxdepth 1 -type f -name "tile_tmp_*_${CLEANFILENAME##*/}.${FILEEXTENSION}" -exec rm {} \;
echo " ok."
FILEOUTSIZE="$(stat -c %s ${FILEOUT})"
let "PERCENT=(${FILEOUTSIZE} * 100 + ${__filesize} / 2)/ ${__filesize}"
echo "${FILEOUTSIZE} ${FILEOUT} (${PERCENT}%)"
}
# Initiate preparatory checks
prepwork
# If the preparations worked, launch the main program
if (( VALIDJPEG )); then
main
fi
###############################################################################
# EOF
###############################################################################