Flaca is a CLI tool for x86-64 Linux machines that simplifies the task of maximally, losslessly compressing JPEG and PNG images for use in production web environments.
It prioritizes compression over speed or resource modesty, and runs best on systems with multiple CPUs. There are only so many ways to be a JPEG, but calculating the optimal construction for a PNG can take a lot of work!
Compression is mainly achieved through the removal of metadata and optimization of pixel tables. Under the hood, Flaca leverages the jpegtran
functionality from MozJPEG for JPEG images, and a combination of Oxipng and Zopflipng for PNG images.
For web images, metadata is just so much wasted bandwidth. Stock photos in particular can be bloated 50% or more with embedded keywords and descriptions that browsers make zero use of. Removing that data — particularly at scale — leads to both lower hosting costs for site operators and faster page loads for visitors.
And it helps close the digital divide.
But in other contexts, metadata may matter.
As a general rule, you should not try to feed your entire personal media library or raw print/design assets to Flaca or it may eat something important.
Debian and Ubuntu users can just grab the pre-built .deb
package from the latest release.
This application is written in Rust and can alternatively be built from source using Cargo:
# Clone the source.
git clone https://github.com/Blobfolio/flaca.git
# Go to it.
cd flaca
# Build as usual.
cargo build \
--bin flaca \
--release
(This should work under other 64-bit Unix environments too, like MacOS.)
In addition to up-to-date Rust
/Cargo
, you'll also need gcc
/clang
, make
, nasm
, and the dev libraries for libjpeg
and libpng
.
It's easy. Just run flaca [FLAGS] [OPTIONS] <PATH(S)>…
.
The following flags and options are available:
Short | Long | Value | Description |
---|---|---|---|
-h |
--help |
Print help information and exit. | |
-j |
<NUM> |
Limit parallelization to this many threads (instead of using all logical cores). | |
-l |
--list |
<FILE> |
Read (absolute) image and/or directory paths from this text file — or STDIN if "-" — one entry per line, instead of or in addition to the trailing <PATH(S)> . |
--max-resolution |
<NUM> |
Skip images containing more than <NUM> total pixels. |
|
--no-jpeg |
Skip JPEG images. | ||
--no-png |
Skip PNG Images. | ||
-z |
--zopfli-iterations |
<NUM> |
Override the number of zopfli iterations when compressing PNGs. |
-p |
--progress |
Show pretty progress while minifying. | |
-V |
--version |
Print version information and exit. |
You can feed it any number of file or directory paths in one go, and/or toss it a text file using the -l
option. Directories are recursively searched.
Flaca can cross filesystem and user boundaries, provided the user running the program has the relevant read/write access. (Not that you should run it as root
, but if you did, images would still be owned by www-data
or whatever after compression.)
Some quick examples:
# Compress one file.
flaca /path/to/image.jpg
# Tackle a whole folder at once with a nice progress bar:
flaca -p /path/to/assets
# Tackle a whole folder, but only look for JPEG images.
flaca --no-png /path/to/assets
# Or load it up with a lot of places separately:
flaca /path/to/assets /path/to/favicon.png …
# Limit parallel processing to two images at a time.
flaca -j2 /path/to/assets
# Zopfli compression is slow and scales more or less linearly with the number
# of iterations set. Flaca uses the same default as zopflipng: 60 for small
# images, 20 for larger ones. If you're willing to trade longer processing
# times for extra (potential) byte savings, you can try scaling up the
# iteration count:
flaca -z 500 /path/to/favicon.png
# Or, conversely, if you want to speed up PNG compression at the expense of a
# few extra bytes, try dialing the count back:
flaca /path/to/huge.png -z 1
Flaca only processes JPEG and PNG image files.
To ease its potential workload, it first checks that each of provided paths end with an appropriate (case-insensitive) file extension: .jpeg
, .jpg
, or .png
. If you pass it file.exe
, for example, it will simply ignore it.
Of course, file names are totally arbitrary, so during processing, it analyzes the file contents to determine the actual type. If that type turns out to be anything other than image/jpeg
or image/png
, the file will likewise be ignored.
In cases where a JPEG image is accidentally assigned a PNG extension, or vice versa, Flaca will still correctly process the image for you, but won't correct the file name. In other words, a PNG incorrectly named image.jpg
will still be a PNG incorrectly named image.jpg
after recompression; it might just be a bit smaller.
This is also true when using the --no-jpeg
or --no-png
flags, except the true type must match the not-no type or it will be skipped.