Creating artistic images with ASCII art
The Art of Letters
Creating images from letters and numbers is a complex matter, unless you have the right tools at hand.
ASCII artists are often genuine tinkerers: With meticulous attention, they create images, and even movies, solely from letters and digits. The combination of simple means and complexity of images is always fascinating. This extravagant art form goes back to the first half of the 20th century and has been known since the 1960s as ASCII art.
The images only use character sets without non-standard characters. These Latin characters are based on the English alphabet and later on the American Standard Code for Information Interchange (ASCII). They contain uppercase and lowercase letters, basic delimiters, and control characters that come from the world of the telegraph. These characters can be found on almost any computer, allowing users to display the image in an identical manner wherever they are.
Artistic opportunities arise in particular by leveraging the amount of black in the various characters. The artist creates transitions between light and dark, and individual shapes, such as arches and curves, through different shades. The human brain's ability to abstract and recognize images using patterns assures the desired effect.
Tools
The central libraries on Linux for generating these images are AAlib and libcaca. The former stands for "ASCII Art Library" [1] and only generates images in grayscale; however, libcaca [2] adds color to the game. If you want to experiment to see the power of these two libraries, you can install the libaa-bin, bb, and caca-utils packages.
All three packages contain several examples. Both aafire
and cacafire
decorate a terminal with a fireplace (Figure 1), whereas aatest
, bb
, and cacademo
impressively demonstrate animations, filters, and transitions in fonts and colors. You can conjure up a clock on the screen with cacaclock
(Figure 2).
Viewing and Converting
The aview
program lets you view images in PNM format. For other formats, such as PNG or JPEG, however, asciiview
from the same package or cacaview
from the caca-utils package are better choices. They prepare the images in the background for viewing on-screen (Figure 3).
The aview
and asciiview
programs display the images with 7-bit characters; the -eight
option lets you switch to 8-bit mode, and -extended
tells the two programs to use 256 characters.
The best approach to converting images is with the GIMP image editing program. To do this, open the desired image, and export it using File | Export. In the drop-down menu, select ASCII art (*txt, *.ansi, *.text). However, GIMP generates relatively large files.
Even the reverse path from alphabet soup to a raster image works with the right tools, but first you need Ditaa (Diagrams through ASCII art) [3]. This Java program converts images into shapes and graphs by combining traditional media with its own extensions, which define the colors and shapes of the elements. Listing 1 shows some example data, and Figure 4 shows the results.
Listing 1
Using Ditaa
Ditaa generates the labels from the text in the box. Strings that start with a lowercase c define the background color. Color codes can be specified either as text designators or as RGB data.
Horizontal and vertical lines are created with the minus and pipe characters. A plus sign indicates corners, which you can optionally round off with a slash character. To convert the text file to an image, enter:
ditaa <inputfile.txt> <outputfile.png>
Alternatives are asciitopgm
and the Python-aafigure Python module [4]. The former can be found in the netpbm package, and the latter provides a complete class for integration into your own projects.
Speech Bubbles and Banners
The Cowsay and Cowthink programs offer more entertainment value. Both can be found in the Debian cowsay package. The tools generate images of cows that output text in a separate bubble.
Cowsay generates a speech bubble and Cowthink a thought bubble, as the names imply. Both programs accept a series of switches to display the cow in various moods and variants, including -b
for Borg mode, -d
for a dead cow, -g
for a hungry cow, and -p
for paranoia mode (Listing 2).
Listing 2
Speech Bubble
The apt-get package manager includes an Easter egg that appears when you type apt-get moo
(Listing 3).
Listing 3
Easter Egg
Fans of the steam age might want to install the sl (steam locomotive) package, which shows animated steam locomotives running from right to left in the terminal. Originally intended as a joke triggered by mistyping the ls
command, the gimmick has now achieved cult status.
The program accepts various switches that customize the display: -a
calls the engineer to help you, -l
draws a smaller train, and -F
lets the train fly (Figure 5).
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.