2026 π Day latest news buy art
Trance opera—Spente le Stellebe dramaticmore quotes
very clickable
visualization + design
It's ok to look. My Type Peep Show: The Private Curves of Letters offers a morally upstanding exploration of the details in letter forms.

ASCII Art—Proportional Spacing, Tone/Structure Mapping and Fixed Strings

After finding a typographic portrait of Christopher Hitchens, created out of Gill Sans letters by Miles Chic at Capilano University, I thought to resurrect software I wrote a long time ago that converts images into letters and expanding traditional ASCII art by using

  • proportionally spaced fonts
  • a variety of font weights in a single image
  • both tone and structure of the image to select characters
  • fixed strings to render an image in legible text

1 · Download code

asciifyimage-0.02.tgz

This is a Perl script and requires Imager. See README in the archive for instructions. I cannot provide installation support, but welcome questions and ideas about the method.

1.1 · Examples

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
Part of the Pioneer plaque rendered with the sequence of human chromosome 1, using 8 weights of Gotham.
Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
DNA helix rendered with string 'dna'.
Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
The Mona Lisa rendered with fixed string 'monalisa'.

2 · ASCII Art

The representation of images by characters—ASCII art—has a long history. ASCII art extends the emoticon (or smiley) to represent a larger piece of work. Typically, the works use a fixed-space font (e.g. Courier), originally designed for display on a terminal. Despite the sophistication of computer graphics today, ASCII art continues to have a strong following with new work continually added to public online galleries.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
Community contributions to ASCII Art Museum. ASCII art can vary from simple cartoon-like depictions to photorealistic interpretations. (source, zoom)

Photos and paintings can be ASCIIfied using a tone-based approach and automated methods exist to do this (Paul D. O’Grady and Scott T. Rickard (2008) Automatic ASCII Art Conversion of Binary Images Using Non-Negative Constraints).

Many artists generate new creations, exclusive to the medium. Typically this kind of ASCII art is based on the interpretation of structure rather than tone—this method has also been automated (Xuemiao Xu, Linling Zhang, Tien-Tsin Wong (2010) Structure-based ASCII Art).

3 · Proportionally-spaced and multi-font ASCII art

I have written code to generate ASCII art from images by using proportional spaced fonts.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
Fixed width fonts (e.g. Pragmata) are popular. ASCII art can be extended to proportionally spaced fonts (e.g. Gotham). More than one weight (or font) can be used to add contrast.

Below is an example of how Pragmata and Gotham can be used to different effect to render an image. When a proportional spaced font is used, the ASCII shape can more fully fill the image.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
Comparison of fixed and proportional spaced fonts in ASCII art. Employing multiple weights adds contrast. The grey background is added to emphasize the original image. (zoom)

Let's see how these methods work on a real image. Many ASCII art Mona Lisa versions exist. Below, I render the Mona Lisa with Pragmata, Gotham Book and 8 weights of Gotham.

3.1 · Structural character selection

Two-tone shapes like the S in the figure above require selecting characters that match the structure of the image. (e.g. "|" matches vertical lines). For a given character and image position there are four distinct match possibilities—a combination of whether the character and image have a signal at a position. I show this in the figure below.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
Finding the best character involves maximizing overlap (s1, s3) and minimizing penalty (s2, s4).

By maximizing scores derived from matches (s1, s3) and minimizing any penalties (s2, s4), a character is identified based on maximal coverage of the image region and minimum coverage of areas that are blank.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
Ink artwork, or thresholded bitmaps in which there are only two tone values, are approximated using structural matching. Here I compare the method of O'Grady and Rickard with my naive structural matching.

When proportional text is used, edges are better approximated, such as in the Homer Simpson example below which uses Gotham Book.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
For this image, 17pt text matches the detail well.

3.2 · Tone-based character selection

Images that are not two-tone require that we match both structure and tone. Structure is approximated by the choice of character, while tone by choice of font weight. To select the best character based on tone, the character's average tone is compared to the average tone of the section of the image to which it is being compared.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
Heavier weights are used to match dark areas of the image.

It is possible to combine both structure and tone metrics in character selection. Below is an example of how an image with both tone and structure is interpreted as the tone and structure score weights are varied. The balance between these two metrics can be very hard to find—it greatly depends on the image. Tone-based mapping works well when font size is small and the image is viewed from larger distance—in this case, characters play the role of individual pixels with varying brightness. Structure-based mapping works with larger type and closer viewing distance.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
A tone:structure ratio of 1:0.5 works well for the Star Trek logo.

Continuous tone bitmaps are an idea application of multi-font ASCII art—images no longer need to be thresholded or dithered.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
Applying both tone and structure character selection metrics to a greyscale image. (source, )

4 · Other varieties of ASCII art

4.1 · Fixed-string ASCII art

ASCII art is generated by dividing the image into a grid and finding the letter (the choice of characters is often expanded to include punctuation) that best matches the grid section. Typically, for each grid the entire set of allowable characters is sampled. Instead, we can limit the choice of character by successively sampling from a fixed string.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
Fixed string ASCII art limits the choice of characters available at each grid. Characters can be drawn from a short string (e.g. 'ilovegotham') or from a larger corpus (e.g. Wikipedia entry for Mona Lisa). The string can be contiguous within the image, or locally within the font.

Here is the Mona Lisa rendered with the fixed string "monalisa" using 8 weights of Gotham.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
Fixed string ASCII art rendering of Mona Lisa.
Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
DNA helix rendered with string 'dna'.
Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
DNA helix rendered with sequence from human chromosome 1.

4.2 · Angled text ASCII art

Things get even more interesting when the text is angled.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
By applying rotations to the input and output images, the image can be approximated by angled text.

4.3 · Multi-layer ASCII art

The image can be textured with multiple layers of ASCII art. In the example below, four layers of text are used, each with a different font size.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
Part of the Pioneer plaque rendered with the sequence of human chromosome 1, using 4 layers of sizes (17pt, 33pt, 59pt and 93pt) and 8 weights of Gotham.

Instead of varying size, the angle of the text can be changed among layers. This results in a pattern reminiscent of a halftone.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
Part of the Pioneer plaque rendered with the sequence of human chromosome 1, using 4 layers with different text rotation (-45, -15, 15, 45 degrees) and 8 weights of Gotham.

4.4 · Recursive ASCII art

An image can be asciified several times, with each iteration the asciified output of the previous step used as input for the next. At each step, the font size should be reduced to s → √s.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
ASCII, set in Gotham Ultra
Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
The above image asciified using 8 weights of 105pt Gotham and the fixed string 'ASCII'.
Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
The asciified example above, asciified again using 8 weights of 11pt Gotham and the fixed string 'ASCII'.
news + thoughts

Happy 2026 π Day—
Art for the 5%

Fri 13-03-2026

Celebrate π Day (March 14th) and enjoy the art — but only if you're part of the 5%.

Go ahead, see what you can't see.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
2026 π DAY | Art for the 5%. Shown in the style of Ishihara color test plates, the art is visible only to those with colour blindness. (details)

Ishihara's Tests for Colour Deficiency

Sun 08-03-2026

Authentic and accurate images of Ishihara's test plates photographed (and lovingly color-corrected) from the 38-plate Ishihara's Tests for Colour Deficiency.

I also provide the position, size, and color of each circle on each test plate.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
ISHIHARA'S TEST PLATE 6 | This plate is part of the set of transformation plates. If you see 5, you're ok. If you see 2, you're not. (details)
Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
ISHIHARA'S TEST PLATE 18 | This plate is part of the set of mysterious hidden plates. If you don't see anything, you're ok. If you see 5, you're not. (details)

Symmetric alternatives to the ordinary least squares regression

Wed 23-07-2025

What immortal hand or eye, could frame thy fearful symmetry? — William Blake, "The Tyger"

This month, we look at symmetric regression, which, unlike simple linear regression, it is reversible — remaining unaltered when the variables are swapped.

Simple linear regression can summarize the linear relationship between two variables `X` and `Y` — for example, when `Y` is considered the response (dependent) and `X` the predictor (independent) variable.

However, there are times when we are not interested (or able) to distinguish between dependent and independent variables — either because they have the same importance or the same role. This is where symmetric regression can help.

Martin Krzywinski @MKrzywinski mkweb.bcgsc.ca
Nature Methods Points of Significance column: Symmetric alternatives to the ordinary least squares regression. Geometry of quantities minimized in OLS and symmetric regression. OLS minimizes `\Sigma e_y^2` in `Y` ~ `X` and `\Sigma e_x^2` `X` ~ `Y`. Pythagorean regression minimizes AB (magenta). Geometric means regression (GMR) minimizes area of ABP (orange). Orthogonal regression (OR) minimizes HP (blue). (read)

Luca Greco, George Luta, Martin Krzywinski & Naomi Altman (2025) Points of significance: Symmetric alternatives to the ordinary least squares regression. Nat. Methods 22:1610–1612.

Beyond Belief Campaign BRCA Art

Wed 11-06-2025

Fuelled by philanthropy, findings into the workings of BRCA1 and BRCA2 genes have led to groundbreaking research and lifesaving innovations to care for families facing cancer.

This set of 100 one-of-a-kind prints explore the structure of these genes. Each artwork is unique — if you put them all together, you get the full sequence of the BRCA1 and BRCA2 proteins.

Martin Krzywinski | contact | Canada's Michael Smith Genome Sciences CentrePHSA
Google whack “vicissitudinal corporealization”
{ 10.9.234.160 }