catimg.sh 2.21 KB
Newer Older
Eduardo San Martin Morote's avatar
Eduardo San Martin Morote committed
1
2
################################################################################
# catimg script by Eduardo San Martin Morote aka Posva                         #
Janosch Schwalm's avatar
Janosch Schwalm committed
3
# https://posva.net                                                            #
Eduardo San Martin Morote's avatar
Eduardo San Martin Morote committed
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
#                                                                              #
# Ouput the content of an image to the stdout using the 256 colors of the      #
# terminal.                                                                    #
# Github: https://github.com/posva/catimg                                      #
################################################################################

function help() {
  echo "Usage catimg [-h] [-w width] [-c char] img"
  echo "By default char is \"  \" and w is the terminal width"
}

# VARIABLES
COLOR_FILE=$(dirname $0)/colors.png
CHAR="  "

WIDTH=""
IMG=""

while getopts qw:c:h opt; do
  case "$opt" in
    w) WIDTH="$OPTARG" ;;
    c) CHAR="$OPTARG" ;;
    h) help; exit ;;
    *) help ; exit 1;;
    esac
  done

while [ "$1" ]; do
  IMG="$1"
  shift
done

if [ "$IMG" = "" -o ! -f "$IMG" ]; then
  help
  exit 1
fi

if [ ! "$WIDTH" ]; then
  COLS=$(expr $(tput cols) "/" $(echo -n "$CHAR" | wc -c))
else
  COLS=$(expr $WIDTH "/" $(echo -n "$CHAR" | wc -c))
fi
46
WIDTH=$(convert "$IMG" -print "%w\n" /dev/null)
Eduardo San Martin Morote's avatar
Eduardo San Martin Morote committed
47
48
49
50
51
52
53
54
55
56
57
58
59
60
if [ "$WIDTH" -gt "$COLS" ]; then
  WIDTH=$COLS
fi

REMAP=""
if convert "$IMG" -resize $COLS\> +dither -remap $COLOR_FILE /dev/null ; then
  REMAP="-remap $COLOR_FILE"
else
  echo "The version of convert is too old, don't expect good results :(" >&2
  #convert "$IMG" -colors 256 PNG8:tmp.png
  #IMG="tmp.png"
fi

# Display the image
61
I=0
62
convert "$IMG" -resize $COLS\> +dither `echo $REMAP` txt:- 2>/dev/null |
Eduardo San Martin Morote's avatar
Eduardo San Martin Morote committed
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
sed -e 's/.*none.*/NO NO NO/g' -e '1d;s/^.*(\(.*\)[,)].*$/\1/g;y/,/ /' |
while read R G B f; do
  if [ ! "$R" = "NO" ]; then
    if [ "$R" -eq "$G" -a "$G" -eq "$B" ]; then
      ((
      I++,
      IDX = 232 + R * 23 / 255
      ))
    else
      ((
      I++,
      IDX = 16
      + R * 5 / 255 * 36
      + G * 5 / 255 * 6
      + B * 5 / 255
      ))
    fi
    #echo "$R,$G,$B: $IDX"
    echo -ne "\e[48;5;${IDX}m${CHAR}"
  else
    (( I++ ))
    echo -ne "\e[0m${CHAR}"
  fi
  # New lines
  (( $I % $WIDTH )) || echo -e "\e[0m"
done