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