-
Notifications
You must be signed in to change notification settings - Fork 2
/
imageAverageColor.sh
executable file
·28 lines (24 loc) · 1.1 KB
/
imageAverageColor.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
#!/bin/bash
source @includes.sh
echo '###################################################'
echo '# Description: Get RGB color components for image average color'
echo '# Usage: $ ./imageAverageColor.sh /Absolute/image/file.jpg'
echo '# Param 1: Image file'
echo '# Requires: Imagemagick'
echo '###################################################'
echoNewline
################################################################################
################################################################################
# check parameters
if [[ $1 == "" ]] ; then
echoError '1st arg must be an image file'
exit 1
fi
################################################################################
################################################################################
# convert $1 -resize 1x1\! \
# -format "# Average color (RGB): %[fx:int(255*r+.5)],%[fx:int(255*g+.5)],%[fx:int(255*b+.5)]\n" info:-
convert $1 -resize 1x1 txt:-
################################################################################
################################################################################
# complete