From b77cd3cc66b263e9579571e2d9233dbd70fb894e Mon Sep 17 00:00:00 2001 From: Sahil Dhiman <52946452+sahilister@users.noreply.github.com> Date: Sat, 21 Nov 2020 03:07:07 +0000 Subject: [PATCH] asciiart: add page (#4962) --- pages/linux/asciiart.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/linux/asciiart.md diff --git a/pages/linux/asciiart.md b/pages/linux/asciiart.md new file mode 100644 index 0000000000..0abe7180fd --- /dev/null +++ b/pages/linux/asciiart.md @@ -0,0 +1,28 @@ +# asciiart + +> Convert images to ASCII. +> More information: . + +- Read an image from a file and print in ASCII: + +`asciiart {{path/to/image.jpg}}` + +- Read an image from a URL and print in ASCII: + +`asciiart {{www.example.com/image.jpg}}` + +- Choose the output width (default is 100): + +`asciiart -width {{50}} {{path/to/image.jpg}}` + +- Colorize the ASCII output: + +`asciiart --color {{path/to/image.jpg}}` + +- Choose the output format (default format is text): + +`asciiart --format {{text|html}} {{path/to/image.jpg}}` + +- Invert the character map: + +`asciiart --invert-chars {{path/to/image.jpg}}`