|
|
|
|
|
by jodrellblank
1253 days ago
|
|
Simple formats are PPM / Netpbm; they’re ASCII text with an identifier line (“P1” for mono, “P2” for grayscale or “P3” for colour), a width and height in pixels (e.g. 320 200), then a stream of numbers for pixel values. Line breaks optional. Almost any language that can count and print can make them, your can write them from APL if you want As ASCII they can pass through email and UUNET and clipboards without BASE64 or equivalent. With flexible line breaks they can even be laid out so the monochrome ones look like the image they describe in a text editor. See the examples at
https://en.wikipedia.org/wiki/Netpbm# |
|
The simplicity of the format nicely limits the image output to the last 2 lines here.