-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathTransformImage.sh
executable file
·663 lines (477 loc) · 19.3 KB
/
TransformImage.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
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
declare -r SCRIPT_NAME="${BASH_SOURCE[0]##*/}" # This script's filename only, without any path components.
declare -r VERSION_NUMBER="1.10"
declare -r -i EXIT_CODE_SUCCESS=0
declare -r -i EXIT_CODE_ERROR=1
abort ()
{
echo >&2 && echo "Error in script \"$SCRIPT_NAME\": $*" >&2
exit $EXIT_CODE_ERROR
}
verify_tool_is_installed ()
{
local TOOL_NAME="$1"
local DEBIAN_PACKAGE_NAME="$2"
command -v "$TOOL_NAME" >/dev/null 2>&1 || abort "Tool '$TOOL_NAME' is not installed. You may have to install it with your Operating System's package manager. For example, under Ubuntu/Debian the corresponding package is called \"$DEBIAN_PACKAGE_NAME\"."
}
check_is_positive_integer ()
{
local STR="$1"
local ERR_MSG_PREFIX="$2"
local IS_NUMBER_REGEX='^[0-9]+$'
if ! [[ $STR =~ $IS_NUMBER_REGEX ]] ; then
abort "${ERR_MSG_PREFIX}String \"$STR\" is not a positive integer."
fi
}
display_help ()
{
cat - <<EOF
$SCRIPT_NAME version $VERSION_NUMBER
Copyright (c) 2019-2022 R. Diez - Licensed under the GNU AGPLv3
Overview:
This tool crops and/or resizes a JPEG image with ImageMagick or jpegtran.
It is just a wrapper for convenience.
The resulting image is optimised in order to save disk space.
Any EXIF information, preview and thumbnail images are removed.
Rotated images (according to the EXIF 'Orientation' field)
are automatically 'unrotated'.
I use this tool to prepare images for embedding in a document.
Syntax:
$SCRIPT_NAME <options...> <--> image.jpg
The resulting filename is image${OUTPUT_FILENAME_SUFFIX}.jpg .
Options:
--crop <expr> Crops the picture according to an expression like "10L,11R,12T,13B",
see below for details.
--xres Scales the image to the target horizontal resolution.
The aspect ratio is maintaned.
--help Displays this help text.
--version Displays the tool's version number (currently $VERSION_NUMBER) .
--license Prints license information.
-- Terminate options processing. Useful to avoid confusion between options and filenames
that begin with a hyphen ('-'). Recommended when calling this script from another script,
where the filename comes from a variable or from user input.
Crop expressions:
- Type 1 like "10L,11R,12T,13B":
L, R, T and B mean respectively left, right, top and bottom.
The values are the number of pixels to remove from each side.
- Type 2 like "10X,11Y,12W,13H":
X and Y specify the coordinates (horizontal and vertical) and W and H the size
(width and height) of the picture area to extract.
- Type 3 like "10X,11Y,12X,13Y":
The first X and Y specify the top-left coordinates and the second X and Y
the bottom-right coordinates of the picture area to extract.
Usage example:
./$SCRIPT_NAME --crop "500L,500R,500T,500B" --xres 640 -- image.jpg
If you only specify the '--crop' operation, it will be performed in a lossless fashion,
so the cropping coordinates will no be entirely accurate. Search for "iMCU boundary"
in the jpegtran documentation for details.
Exit status: 0 means success. Any other value means error.
Feedback: Please send feedback to rdiezmail-tools at yahoo.de
EOF
}
display_license()
{
cat - <<EOF
Copyright (c) 2019-2022 R. Diez
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License version 3 as published by
the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License version 3 for more details.
You should have received a copy of the GNU Affero General Public License version 3
along with this program. If not, see L<http://www.gnu.org/licenses/>.
EOF
}
parse_command_line_arguments ()
{
# The way command-line arguments are parsed below was originally described on the following page:
# http://mywiki.wooledge.org/ComplexOptionParsing
# But over the years I have rewritten or amended most of the code myself.
if false; then
echo "USER_SHORT_OPTIONS_SPEC: $USER_SHORT_OPTIONS_SPEC"
echo "Contents of USER_LONG_OPTIONS_SPEC:"
for key in "${!USER_LONG_OPTIONS_SPEC[@]}"; do
printf -- "- %s=%s\\n" "$key" "${USER_LONG_OPTIONS_SPEC[$key]}"
done
fi
# The first colon (':') means "use silent error reporting".
# The "-:" means an option can start with '-', which helps parse long options which start with "--".
local MY_OPT_SPEC=":-:$USER_SHORT_OPTIONS_SPEC"
local OPTION_NAME
local OPT_ARG_COUNT
local OPTARG # This is a standard variable in Bash. Make it local just in case.
local OPTARG_AS_ARRAY
while getopts "$MY_OPT_SPEC" OPTION_NAME; do
case "$OPTION_NAME" in
-) # This case triggers for options beginning with a double hyphen ('--').
# If the user specified "--longOpt" , OPTARG is then "longOpt".
# If the user specified "--longOpt=xx", OPTARG is then "longOpt=xx".
if [[ "$OPTARG" =~ .*=.* ]] # With this --key=value format, only one argument is possible.
then
OPTION_NAME=${OPTARG/=*/}
OPTARG=${OPTARG#*=}
OPTARG_AS_ARRAY=("")
if ! test "${USER_LONG_OPTIONS_SPEC[$OPTION_NAME]+string_returned_if_exists}"; then
abort "Unknown command-line option \"--$OPTION_NAME\"."
fi
# Retrieve the number of arguments for this option.
OPT_ARG_COUNT=${USER_LONG_OPTIONS_SPEC[$OPTION_NAME]}
if (( OPT_ARG_COUNT != 1 )); then
abort "Command-line option \"--$OPTION_NAME\" does not take 1 argument."
fi
process_command_line_argument
else # With this format, multiple arguments are possible, like in "--key value1 value2".
OPTION_NAME="$OPTARG"
if ! test "${USER_LONG_OPTIONS_SPEC[$OPTION_NAME]+string_returned_if_exists}"; then
abort "Unknown command-line option \"--$OPTION_NAME\"."
fi
# Retrieve the number of arguments for this option.
OPT_ARG_COUNT=${USER_LONG_OPTIONS_SPEC[$OPTION_NAME]}
if (( OPT_ARG_COUNT == 0 )); then
OPTARG=""
OPTARG_AS_ARRAY=("")
process_command_line_argument
elif (( OPT_ARG_COUNT == 1 )); then
# If this is the last option, and its argument is missing, then OPTIND is out of bounds.
if (( OPTIND > $# )); then
abort "Option '--$OPTION_NAME' expects one argument, but it is missing."
fi
OPTARG="${!OPTIND}"
OPTARG_AS_ARRAY=("")
process_command_line_argument
else
OPTARG=""
# OPTARG_AS_ARRAY is not standard in Bash. I have introduced it to make it clear that
# arguments are passed as an array in this case. It also prevents many Shellcheck warnings.
OPTARG_AS_ARRAY=("${@:OPTIND:OPT_ARG_COUNT}")
if [ ${#OPTARG_AS_ARRAY[@]} -ne "$OPT_ARG_COUNT" ]; then
abort "Command-line option \"--$OPTION_NAME\" needs $OPT_ARG_COUNT arguments."
fi
process_command_line_argument
fi
((OPTIND+=OPT_ARG_COUNT))
fi
;;
*) # This processes only single-letter options.
# getopts knows all valid single-letter command-line options, see USER_SHORT_OPTIONS_SPEC above.
# If it encounters an unknown one, it returns an option name of '?'.
if [[ "$OPTION_NAME" = "?" ]]; then
abort "Unknown command-line option \"$OPTARG\"."
else
# Process a valid single-letter option.
OPTARG_AS_ARRAY=("")
process_command_line_argument
fi
;;
esac
done
shift $((OPTIND-1))
ARGS=("$@")
}
process_command_line_argument ()
{
case "$OPTION_NAME" in
help)
display_help
exit $EXIT_CODE_SUCCESS
;;
version)
echo "$VERSION_NUMBER"
exit $EXIT_CODE_SUCCESS
;;
license)
display_license
exit $EXIT_CODE_SUCCESS
;;
crop)
if [[ $OPTARG = "" ]]; then
abort "The '--crop' option has an empty value.";
fi
CROP_OPTION="$OPTARG"
;;
xres)
if [[ $OPTARG = "" ]]; then
abort "The '--xres' option has an empty value.";
fi
XRES_OPTION="$OPTARG"
;;
*) # We should actually never land here, because parse_command_line_arguments() already checks if an option is known.
abort "Unknown command-line option \"--${OPTION_NAME}\".";;
esac
}
declare -r CONVERT_TOOL="convert"
declare -r IDENTIFY_TOOL="identify"
declare -r JPEGTRAN_TOOL="jpegtran"
declare -r JHEAD_TOOL="jhead"
declare -r ASCII_DIGITS="0123456789"
# Example of text to parse: 123 456
declare -r DIMENSIONS_REGEX="^([$ASCII_DIGITS]+) ([$ASCII_DIGITS]+)\$"
# Example of text to parse: 123L,234R,345T,456B
declare -r CROP_REGEX_1="^([$ASCII_DIGITS]+)L,([$ASCII_DIGITS]+)R,([$ASCII_DIGITS]+)T,([$ASCII_DIGITS]+)B\$"
declare -r CROP_REGEX_2="^([$ASCII_DIGITS]+)X,([$ASCII_DIGITS]+)Y,([$ASCII_DIGITS]+)W,([$ASCII_DIGITS]+)H\$"
declare -r CROP_REGEX_3="^([$ASCII_DIGITS]+)X,([$ASCII_DIGITS]+)Y,([$ASCII_DIGITS]+)X,([$ASCII_DIGITS]+)Y\$"
get_image_dimensions ()
{
local -r FILENAME="$1"
verify_tool_is_installed "$IDENTIFY_TOOL" "imagemagick"
local CMD
printf -v CMD \
"%q -format %q -- %q" \
"$IDENTIFY_TOOL" \
"%w %h" \
"$FILENAME"
local DIMENSIONS
DIMENSIONS="$(eval "$CMD")"
if ! [[ $DIMENSIONS =~ $DIMENSIONS_REGEX ]] ; then
abort "Cannot parse dimension expression: $DIMENSIONS"
fi
IMAGE_WIDTH="${BASH_REMATCH[1]}"
IMAGE_HEIGHT="${BASH_REMATCH[2]}"
if false; then
echo "Image resolution: $IMAGE_WIDTH x $IMAGE_HEIGHT"
fi
}
declare -r OUTPUT_FILENAME_SUFFIX="-transformed"
declare -r TEMP_FILENAME_SUFFIX="-temp"
break_up_filename ()
{
local -r FILENAME="$1"
local -r BASENAME="${FILENAME##*/}"
FILE_EXTENSION="${BASENAME##*.}"
FILENAME_ONLY="${BASENAME%.*}"
# If we did not use absolute paths, we would need to validate filenames.
# Anything starting with a hyphen ('-') could be confused with a command-line option.
# A filename starting with "PNG64:" could be confused with a format specifier by the 'convert' tool.
local FILENAME_ABS
FILENAME_ABS="$(readlink --canonicalize --verbose -- "$FILENAME")"
BASEDIR="${FILENAME_ABS%/*}"
# We do not need to add a special case for the root directory, because
# we will be appending a '/' first thing later on.
# if [[ $BASEDIR = "" ]]; then
# BASEDIR="/"
# fi
# Variables BASEDIR, FILENAME_ONLY and FILE_EXTENSION are also 'exported' (not local)
# in case the caller wants to build temporary filenames too,
# in a similar way like we are building DEST_FILENAME_FINAL here.
DEST_FILENAME_FINAL="$BASEDIR/${FILENAME_ONLY}${OUTPUT_FILENAME_SUFFIX}.$FILE_EXTENSION"
}
# The returned EXTRACT_EXPRESSION has this format:
# WxH+X+Y
# That means crop the image to a rectangular region of width W and height H, starting at point (X,Y).
generate_extract_expression ()
{
local -r CROP_EXPRESSION="$1"
local -r IMAGE_WIDTH="$2"
local -r IMAGE_HEIGHT="$3"
if [[ $CROP_EXPRESSION =~ $CROP_REGEX_1 ]] ; then
local -r CROP_LEFT="${BASH_REMATCH[1]}"
local -r CROP_RIGHT="${BASH_REMATCH[2]}"
local -r CROP_TOP="${BASH_REMATCH[3]}"
local -r CROP_BOTTOM="${BASH_REMATCH[4]}"
if false; then
echo "CROP expression: $CROP_EXPRESSION"
echo "CROP regex: $CROP_REGEX_1"
echo "CROP_LEFT : $CROP_LEFT"
echo "CROP_RIGHT : $CROP_RIGHT"
echo "CROP_TOP : $CROP_TOP"
echo "CROP_BOTTOM: $CROP_BOTTOM"
fi
local -r -i EXTRACT_WIDTH="$(( IMAGE_WIDTH - CROP_LEFT - CROP_RIGHT ))"
local -r -i EXTRACT_HEIGHT="$(( IMAGE_HEIGHT - CROP_TOP - CROP_BOTTOM ))"
local -r -i EXTRACT_OFFSET_X="$CROP_LEFT"
local -r -i EXTRACT_OFFSET_Y="$CROP_TOP"
EXTRACT_EXPRESSION="${EXTRACT_WIDTH}x${EXTRACT_HEIGHT}+${EXTRACT_OFFSET_X}+${EXTRACT_OFFSET_Y}"
EXTRACT_FINAL_WIDTH="$EXTRACT_WIDTH"
return
fi
if [[ $CROP_EXPRESSION =~ $CROP_REGEX_2 ]] ; then
EXTRACT_EXPRESSION="${BASH_REMATCH[3]}x${BASH_REMATCH[4]}+${BASH_REMATCH[1]}+${BASH_REMATCH[2]}"
EXTRACT_FINAL_WIDTH="${BASH_REMATCH[3]}"
return
fi
if [[ $CROP_EXPRESSION =~ $CROP_REGEX_3 ]] ; then
local -r X1="${BASH_REMATCH[1]}"
local -r Y1="${BASH_REMATCH[2]}"
local -r X2="${BASH_REMATCH[3]}"
local -r Y2="${BASH_REMATCH[4]}"
if (( X1 >= X2 )); then
abort "Invalid crop expression."
fi
if (( Y1 >= Y2 )); then
abort "Invalid crop expression."
fi
local -r -i EXTRACT_WIDTH="$(( X2 - X1 ))"
local -r -i EXTRACT_HEIGHT="$(( Y2 - Y1 ))"
EXTRACT_EXPRESSION="${EXTRACT_WIDTH}x${EXTRACT_HEIGHT}+${X1}+${Y1}"
EXTRACT_FINAL_WIDTH="$EXTRACT_WIDTH"
return
fi
abort "Cannot parse crop expression: $CROP_EXPRESSION"
}
declare -r AUTO_ROTATE=true
process_image_with_imagemagick ()
{
local -r FILENAME="$1"
local -r CROP_EXPRESSION="$2"
local -r OUTPUT_XRES="$3"
local FILE_EXTENSION
local FILENAME_ONLY
local BASEDIR
local DEST_FILENAME_FINAL
break_up_filename "$FILENAME"
if $AUTO_ROTATE; then
# This step is rather slow. We could optimise it by checking beforehand whether the image
# was actually rotated. If it was not, then we can skip this step.
# If the image was indeed rotated:
# - If it is a JPEG, "jhead -autorot" is much faster.
# - We could transpose the coordinates in order to do everything at once.
# Use a lossless format like PNG for the intermediate step.
# PNG64 would lose less quality, but it is slower, and I am not sure
# that any significant quality would be lost.
# A quick test with a 9,3 MiB JPEG yielded 8,1 s vs 12 s (48 % longer).
# In order to use the PNG64 format, prefix the filename like this:
# PNG64:image.jpg
# After seeing this, I am a little worried about user-supplied filenames which already
# begin with such a prefix. Unfortunately, I could not find anything about this
# in the documentation. Such behaviour could be seen as a security risk.
#
# We are using uncompressed TIF because it is much faster than the standard PNG.
local -r DEST_FILENAME_TEMP="$BASEDIR/${FILENAME_ONLY}${TEMP_FILENAME_SUFFIX}.tif"
local CMD_AUTO_ROTATE
printf -v CMD_AUTO_ROTATE \
"%q -auto-orient -- %q %q" \
"$CONVERT_TOOL" \
"$FILENAME" \
"$DEST_FILENAME_TEMP"
echo "$CMD_AUTO_ROTATE"
eval "$CMD_AUTO_ROTATE"
else
local -r DEST_FILENAME_TEMP="$FILENAME"
fi
local IMAGE_WIDTH
local IMAGE_HEIGHT
get_image_dimensions "$DEST_FILENAME_TEMP"
if [[ $CROP_EXPRESSION ]]; then
# Hopefully, we are not doing just cropping, but scaling as well.
# Otherwise, the caller should have called process_image_for_lossless_cropping() instead.
local EXTRACT_EXPRESSION
local -i EXTRACT_FINAL_WIDTH
generate_extract_expression "$CROP_EXPRESSION" "$IMAGE_WIDTH" "$IMAGE_HEIGHT"
local -r EXTRACT_ARG="-extract $EXTRACT_EXPRESSION"
else
local -r EXTRACT_ARG=""
local -r -i EXTRACT_FINAL_WIDTH="$IMAGE_WIDTH"
fi
if [[ $OUTPUT_XRES ]]; then
if (( EXTRACT_FINAL_WIDTH < OUTPUT_XRES )); then
# Stretching the image makes no sense: the file gets bigger and quality does not improve.
abort "The specified --xres value is greater than the resulting horizontal resolution of $EXTRACT_FINAL_WIDTH ."
fi
if (( EXTRACT_FINAL_WIDTH == OUTPUT_XRES )); then
# Resampling the image makes no sense if you are not going to change the resolution,
# as you lose quality.
abort "The specified --xres value is the same as the resulting horizontal resolution of $EXTRACT_FINAL_WIDTH ."
fi
# According to the ImageMagick documentation, we do not need to specify the trailing 'x' below.
local -r GEOMETRY_ARG="-geometry ${OUTPUT_XRES}x"
else
local -r GEOMETRY_ARG=""
# The current caller will not call this routine if there is no scaling to do.
abort "Internal error."
fi
verify_tool_is_installed "$CONVERT_TOOL" "imagemagick"
# With options "-strip -interlace Plane", ImageMagick generates progressive, optimised JPEGs of similar size as "jpegtran -optimize -progressive".
local CMD
printf -v CMD \
"%q -strip -interlace Plane %s %s -- %q %q" \
"$CONVERT_TOOL" \
"$EXTRACT_ARG" \
"$GEOMETRY_ARG" \
"$DEST_FILENAME_TEMP" \
"$DEST_FILENAME_FINAL"
echo "$CMD"
eval "$CMD"
if $AUTO_ROTATE; then
rm -- "$DEST_FILENAME_TEMP"
fi
}
process_image_for_lossless_cropping ()
{
local -r FILENAME="$1"
local -r CROP_EXPRESSION="$2"
local FILE_EXTENSION
local FILENAME_ONLY
local BASEDIR
local DEST_FILENAME_FINAL
break_up_filename "$FILENAME"
# We are determining the file content type based on the filename extension.
# There are probably better ways to do this.
FILE_EXTENSION_UPPERCASE=${FILE_EXTENSION^^}
if [[ $FILE_EXTENSION_UPPERCASE != JPG && $FILE_EXTENSION_UPPERCASE != JPEG ]]; then
abort "Lossless cropping is only supported on JPEG files at the moment (with file extension .jpg or .jpeg)."
fi
if $AUTO_ROTATE; then
local -r DEST_FILENAME_TEMP="$BASEDIR/${FILENAME_ONLY}${TEMP_FILENAME_SUFFIX}.jpg"
verify_tool_is_installed "$JHEAD_TOOL" "jhead"
cp -- "$FILENAME" "$DEST_FILENAME_TEMP"
local CMD_AUTO_ROTATE
printf -v CMD_AUTO_ROTATE \
"%q -autorot %q" \
"$JHEAD_TOOL" \
"$DEST_FILENAME_TEMP"
echo "$CMD_AUTO_ROTATE"
eval "$CMD_AUTO_ROTATE"
else
local -r DEST_FILENAME_TEMP="$FILENAME"
fi
local IMAGE_WIDTH
local IMAGE_HEIGHT
get_image_dimensions "$DEST_FILENAME_TEMP"
local EXTRACT_EXPRESSION
generate_extract_expression "$CROP_EXPRESSION" "$IMAGE_WIDTH" "$IMAGE_HEIGHT"
verify_tool_is_installed "$JPEGTRAN_TOOL" "libjpeg-turbo-progs"
# Unfortunately, tool 'jpegtran' does not seem able to use '--' as an option terminator.
local CMD
printf -v CMD \
"%q -optimize -progressive -perfect -crop %q %q >%q" \
"$JPEGTRAN_TOOL" \
"$EXTRACT_EXPRESSION" \
"$DEST_FILENAME_TEMP" \
"$DEST_FILENAME_FINAL"
echo "$CMD"
eval "$CMD"
if $AUTO_ROTATE; then
rm -- "$DEST_FILENAME_TEMP"
fi
}
# --------------------------------------------------
USER_SHORT_OPTIONS_SPEC=""
# Use an associative array to declare how many arguments every long option expects.
# All known options must be listed, even those with 0 arguments.
declare -A USER_LONG_OPTIONS_SPEC
USER_LONG_OPTIONS_SPEC+=( [help]=0 )
USER_LONG_OPTIONS_SPEC+=( [version]=0 )
USER_LONG_OPTIONS_SPEC+=( [license]=0 )
USER_LONG_OPTIONS_SPEC+=( [crop]=1 )
USER_LONG_OPTIONS_SPEC+=( [xres]=1 )
CROP_OPTION=""
XRES_OPTION=""
parse_command_line_arguments "$@"
if (( ${#ARGS[@]} != 1 )); then
abort "Invalid command-line arguments. Run this tool with the --help option for usage information."
fi
declare -r IMAGE_FILENAME="${ARGS[0]}"
if [[ ! $CROP_OPTION && ! $XRES_OPTION ]]; then
abort "No operation specified."
fi
if [[ $XRES_OPTION ]]; then
check_is_positive_integer "$XRES_OPTION" "Error in '--xres' option: "
process_image_with_imagemagick "$IMAGE_FILENAME" "$CROP_OPTION" "$XRES_OPTION"
else
process_image_for_lossless_cropping "$IMAGE_FILENAME" "$CROP_OPTION"
fi