[hackers] [farbfeld] Update the README || Laslo Hunhold

From: <git_AT_suckless.org>
Date: Fri, 14 Apr 2017 18:22:35 +0200 (CEST)

commit 3d73fbaa1aeab1000d7f77cd6ee21f06a9b02e04
Author: Laslo Hunhold <dev_AT_frign.de>
AuthorDate: Fri Apr 14 18:21:22 2017 +0200
Commit: Laslo Hunhold <dev_AT_frign.de>
CommitDate: Fri Apr 14 18:21:22 2017 +0200

    Update the README
    
    Rework the introductory paragraph and show examples directly afterwards.
    If people are interested in the tl;dr-sections, they can then read on.

diff --git a/README b/README
index 89123a5..e0c6d03 100644
--- a/README
+++ b/README
_AT_@ -8,9 +8,28 @@
 
 WHAT IS FARBFELD?
         Farbfeld is a lossless image-format designed to be
- parsed and piped easily.
- It can be compressed easily and beats PNG's filesize
+ parsed and piped easily. It is probably the simplest
+ image-format you can find (see FORMAT).
+ It does not have integrated compression, but allows
+ compression algorithms to work with it easily by adding
+ little entropy to the image data itself. This beats PNG
         in many cases.
+ Given the free choice of compression algorithms, it
+ is trivial to switch to better and faster ones as they
+ show up in the future.
+
+HOW DO I USE THE TOOLS?
+ encoding:
+ png2ff < example.png > example.ff
+ png2ff < example.png | bzip2 > example.ff.bz2
+
+ decoding:
+ ff2png < example.ff > example.png
+ bzcat example.ff.bz2 | ff2png > example.png
+
+ bzip2 is used in this example and a recommended
+ compression algorithm. Of course you are free
+ to use something else.
 
 WHY FARBFELD?
         Current image-formats have integrated compression,
_AT_@ -32,13 +51,13 @@ WHY FARBFELD?
         and farbfeld.
 
 HOW DOES IT WORK?
- In Farbfeld, pattern resolution is not done while
+ In farbfeld, pattern resolution is not done while
         converting, but while compressing the image.
         For example, farbfeld always stores the alpha-channel,
         even if the image doesn't have alpha-variation.
         This may sound like a big waste at first, but as
         soon as you compress an image of this kind, the
- compression-algorithm (e.g. bz2) recognizes the
+ compression-algorithm (e.g. bzip2) recognizes the
         pattern that every 48 bits the 16 bits store the
         same information.
         And the compression-algorithms get better and better
_AT_@ -49,19 +68,7 @@ HOW DOES IT WORK?
         the same value, which is recognized by the compression
         algorithm easily.
         This effectively leads to filesizes you'd normally only
- reach with paletted images, and in some cases bz2 even
+ reach with paletted images, and in some cases bzip2 even
         beats png's compression, for instance when you're dealing
         with grayscale data, line drawings, decals and even
         photographs.
-
-HOW DO I USE THE TOOLS?
- encoding:
- png2ff < example.png > example.ff
- png2ff < example.png | bzip2 > example.ff.bz2
-
- decoding:
- ff2png < example.ff > example.png
- bzcat example.ff.bz2 | ff2png > example.png
-
- bz2 is recommended for compression, but you can use
- any algorithm you want.
Received on Fri Apr 14 2017 - 18:22:35 CEST

This archive was generated by hypermail 2.3.0 : Fri Apr 14 2017 - 18:24:16 CEST