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