catimg plugin

allow to print an image to the stdout using convert
This commit is contained in:
Eduardo San Martin Morote
2013-12-09 08:54:38 +01:00
parent 357ab4912b
commit 0185d9920b
3 changed files with 103 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
################################################################################
# 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 #
################################################################################
if [[ -x `which convert` ]]; then
function catimg() {
source $(dirname $0)/catimg.sh $@
}
else
echo "catimg need convert (ImageMagick) to work)"
fi