2013-12-09 00:54:38 -07:00
|
|
|
################################################################################
|
|
|
|
# catimg script by Eduardo San Martin Morote aka Posva #
|
2018-08-07 11:42:02 -07:00
|
|
|
# https://posva.net #
|
2013-12-09 00:54:38 -07:00
|
|
|
# #
|
2021-12-01 04:20:31 -07:00
|
|
|
# Output the content of an image to the stdout using the 256 colors of the #
|
2013-12-09 00:54:38 -07:00
|
|
|
# terminal. #
|
2019-05-07 11:02:41 -07:00
|
|
|
# GitHub: https://github.com/posva/catimg #
|
2013-12-09 00:54:38 -07:00
|
|
|
################################################################################
|
|
|
|
|
2014-02-23 02:07:26 -07:00
|
|
|
|
|
|
|
function catimg() {
|
2024-08-12 02:46:16 -07:00
|
|
|
if (( $+commands[magick] )); then
|
|
|
|
CONVERT_CMD="magick" zsh $ZSH/plugins/catimg/catimg.sh $@
|
|
|
|
elif (( $+commands[convert] )); then
|
|
|
|
CONVERT_CMD="convert" zsh $ZSH/plugins/catimg/catimg.sh $@
|
2014-02-23 02:07:26 -07:00
|
|
|
else
|
2024-08-12 02:46:16 -07:00
|
|
|
echo "catimg need magick/convert (ImageMagick) to work)"
|
2014-02-23 02:07:26 -07:00
|
|
|
fi
|
|
|
|
}
|