2013-12-09 07:54:38 +00:00
|
|
|
################################################################################
|
|
|
|
# catimg script by Eduardo San Martin Morote aka Posva #
|
2018-08-07 18:42:02 +00:00
|
|
|
# https://posva.net #
|
2013-12-09 07:54:38 +00:00
|
|
|
# #
|
2021-12-01 11:20:31 +00:00
|
|
|
# Output the content of an image to the stdout using the 256 colors of the #
|
2013-12-09 07:54:38 +00:00
|
|
|
# terminal. #
|
2019-05-07 18:02:41 +00:00
|
|
|
# GitHub: https://github.com/posva/catimg #
|
2013-12-09 07:54:38 +00:00
|
|
|
################################################################################
|
|
|
|
|
2014-02-23 09:07:26 +00:00
|
|
|
|
|
|
|
function catimg() {
|
2024-08-12 09:46:16 +00: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 09:07:26 +00:00
|
|
|
else
|
2024-08-12 09:46:16 +00:00
|
|
|
echo "catimg need magick/convert (ImageMagick) to work)"
|
2014-02-23 09:07:26 +00:00
|
|
|
fi
|
|
|
|
}
|