From 2e26a81acf1ae0ebdb4a4d633a795e1260e36395 Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Thu, 4 Dec 2014 11:32:54 -0800 Subject: [PATCH] Update README.md Add description to display RLE ASCII image. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 6c86de3..680692b 100644 --- a/README.md +++ b/README.md @@ -32,4 +32,12 @@ pbmtorle < image.pbm > image.rle You have to edit the source code to use the appropriate rle file and give it a caption. The caption string is prepended with the length, so make sure it matches. When you rebuild the binary, the resultant file has to be 3456 bytes or less, assuming you want it to run on a minimal 4K Apple 1. If you have more contiguous memory, then you can fill 'er up. +Viewing RLE ASCII Artwork +------------------------- + +You can view the converted ASCII artwork in your terminal by running: +``` +dumprle image.rle +``` + Dave...