zenjpeg [](https://github.com/imazen/zenjpeg/actions/workflows/ci.yml) [](https://crates.io/crates/zenjpeg) [](https://lib.rs/crates/zenjpeg) [](https://docs.rs/zenjpeg) [](https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field) [](#license)

June 28, 2026 · View on GitHub

zenjpeg is a pure-Rust JPEG encoder and decoder with perceptual optimization. It began as a port of Google's jpegli (from the JPEG XL project) and, after several rewrites, adds streaming single-pass encode and decode with bounded memory, parallel encode/decode, adaptive quantization, optional trellis quantization, an optional XYB perceptual color space, UltraHDR gain maps, lossless DCT-domain transforms, and JPEG→JPEG recompression. Safe SIMD on x86-64 (AVX2/AVX-512) and aarch64 (NEON) via archmage tokens. #![forbid(unsafe_code)], no C dependencies.

Note: This crate was previously published as jpegli-rs. If migrating, update imports from use jpegli:: to use zenjpeg::.

Quick Start

[dependencies]
zenjpeg = "0.8"

Encode

use zenjpeg::encoder::{EncoderConfig, PixelLayout, ChromaSubsampling, Unstoppable};

let config = EncoderConfig::ycbcr(85.0, ChromaSubsampling::Quarter);
let mut enc = config.encode_from_bytes(width, height, PixelLayout::Rgb8Srgb)?;
enc.push_packed(&rgb_bytes, Unstoppable)?;
let jpeg_bytes: Vec<u8> = enc.finish()?;

Decode

use zenjpeg::decoder::Decoder;
use zenjpeg::encoder::Unstoppable;

let result = Decoder::new().decode(&jpeg_bytes, Unstoppable)?;
let rgb_pixels: &[u8] = result.pixels_u8().expect("u8 output");
let (width, height) = result.dimensions();

Streaming Decode (Row-by-Row)

use zenjpeg::decoder::Decoder;
use imgref::ImgRefMut;

let mut reader = Decoder::new().scanline_reader(&jpeg_data)?;
let w = reader.width() as usize;
let mut buf = vec![0u8; w * reader.height() as usize * 3];
let mut rows = 0;
while !reader.is_finished() {
    let slice = &mut buf[rows * w * 3..];
    let output = ImgRefMut::new(slice, w * 3, reader.height() as usize - rows);
    rows += reader.read_rows_rgb8(output)?;
}

End-to-End: decode → re-encode (server-side, with limits + cancellation)

Read a JPEG, decode it under a pixel/memory limit and a cancellation token, then re-encode the RGB pixels at quality 80. Every type is imported with its real path.

use std::fs;
use zenjpeg::decoder::Decoder;
use zenjpeg::encoder::{ChromaSubsampling, EncoderConfig, PixelLayout, Unstoppable};

fn transcode(input_path: &str, output_path: &str) -> Result<(), Box<dyn std::error::Error>> {
    let jpeg_bytes = fs::read(input_path)?;

    // Decode with DoS limits + a stop token. `Unstoppable` never cancels;
    // pass any `&impl zenjpeg::encoder::Stop` (e.g. a shared atomic flag) instead
    // to support user-initiated cancellation.
    let decoded = Decoder::new()
        .max_pixels(120_000_000) // reject decompression bombs (120 MP, admits ~108 MP camera photos)
        .max_memory(512 * 1024 * 1024) // cap allocation at 512 MB
        .decode(&jpeg_bytes, Unstoppable)?;

    let (width, height) = decoded.dimensions();
    let rgb: &[u8] = decoded.pixels_u8().expect("u8 output (default OutputTarget::Srgb8)");

    // Re-encode at quality 80.0, 4:2:0 chroma.
    let config = EncoderConfig::ycbcr(80.0, ChromaSubsampling::Quarter);
    let mut enc = config.encode_from_bytes(width, height, PixelLayout::Rgb8Srgb)?;
    enc.push_packed(rgb, Unstoppable)?;
    let out: Vec<u8> = enc.finish()?;

    fs::write(output_path, &out)?;
    Ok(())
}

Unstoppable is re-exported from zenjpeg::encoder and is the same type the decoder accepts, so a single import covers both the decode and encode calls. To set all limits in one value (and reuse them via the request builder), use Limits: zenjpeg::encoder::Limits::default().max_pixels(120_000_000).max_memory(512 * 1024 * 1024).

Heritage

Started as a port of jpegli from Google's JPEG XL project. After six rewrites it shares ideas but little code with the original.

From jpegli: adaptive quantization, XYB color space, perceptual quant tables, zero-bias coefficient rounding.

From mozjpeg: overshoot deringing (enabled by default), trellis quantization, hybrid trellis mode.

Our own: pure safe Rust, streaming row-by-row API, parallel encode/decode, deblocking filters, UltraHDR gain maps, JPEG source detection and re-encoding recommendations.

Feature Flags

FeatureDefaultDescription
parallelnoMulti-threaded encode/decode via rayon
moxcmsnoColor management (pure Rust). Required for .correct_color() and XYB decode
ultrahdrnoUltraHDR HDR gain map encode/decode
zencodecnozencodec trait implementations for cross-codec pipelines
layoutnoLossless transforms + lossy decode→resize→encode pipeline
recompressnoJPEG→JPEG recompression to a target perceptual quality (see Recompress). Core path; no heavy deps
recompress-iqanoAdds the measured closed loop to recompress (pulls in zensim)
recompress-expertnoExposes recompress::expert internals (unstable, not semver-covered)
target-zqnoQuality::Zq / Quality::ZqExplicit closed-loop perceptual-quality encoder (pulls in zensim)
boundary-rdnoOpt-in block-boundary continuity refinement (off by default; output is byte-identical unless enabled)

The decoder and trellis quantization are always compiled — the historical decoder and trellis feature flags are now no-ops kept only so existing features = [...] lines keep resolving. auto_optimize() and the mozjpeg/hybrid presets need no feature flag; trellis is data-gated and off by default at runtime, turned on via auto_optimize(true). The decoder API is prerelease — expect breaking changes.

# Encode + decode (most common)
[dependencies]
zenjpeg = "0.8"

# High-performance server (parallel encode + decode)
[dependencies]
zenjpeg = { version = "0.8", features = ["parallel"] }

# Color-managed decode (XYB, ICC profiles)
[dependencies]
zenjpeg = { version = "0.8", features = ["moxcms"] }

Encoder

Color Modes

ConstructorUse Case
EncoderConfig::ycbcr(q, sub)Standard JPEG (most compatible)
EncoderConfig::xyb(q, b_sub)XYB perceptual color (better quality, needs moxcms to decode)
EncoderConfig::grayscale(q)Single-channel

Quality accepts a plain number (85 or 85.0, the 0–100 scale) or a Quality variant (see Quality Options).

Entry Points

MethodInput TypeUse Case
encode_from_bytes(w: u32, h: u32, layout)&[u8]Raw byte buffers
encode_from_rgb::<P>(w: u32, h: u32)rgb crate typesRGB<u8>, RGBA<f32>, etc.
encode_from_ycbcr_planar(w: u32, h: u32)YCbCrPlanesVideo pipeline output

Width and height are u32 (pixels) on every entry point. All three return a streaming Encoder. Push rows with push_packed(), finish with finish(). One-shot convenience: config.request().encode(&pixels, w, h).

Builder Methods

MethodDefaultNotes
.progressive(bool)true~3% smaller, ~2x slower
.auto_optimize(bool)falseBest quality/size (hybrid trellis)
.deringing(bool)trueOvershoot deringing for documents/graphics
.separate_chroma_tables(bool)true3 quant tables (Y, Cb, Cr) vs 2
.huffman(strategy)OptimizeHuffman table strategy
.sharp_yuv(bool)falseSharpYUV chroma downsampling

Quality Options

use zenjpeg::encoder::{EncoderConfig, Quality, ChromaSubsampling};

// Simple quality scale (0-100)
let config = EncoderConfig::ycbcr(85.0, ChromaSubsampling::Quarter);

// Target a specific metric
let config = EncoderConfig::ycbcr(Quality::ApproxMozjpeg(80), ChromaSubsampling::Quarter);
let config = EncoderConfig::ycbcr(Quality::ApproxSsim2(90.0), ChromaSubsampling::Quarter);
let config = EncoderConfig::ycbcr(Quality::ApproxButteraugli(1.0), ChromaSubsampling::Quarter);

Trellis Modes

Default (no trellis): adaptive quantization with perceptual zero-bias. Fast, good quality.

Hybrid trellis (auto_optimize(true)): combines jpegli AQ with mozjpeg trellis. Best quality/size tradeoff. +1.5 SSIMULACRA2 points vs default at matched file size.

let config = EncoderConfig::ycbcr(85.0, ChromaSubsampling::Quarter)
    .auto_optimize(true);

Mozjpeg-compatible presets: MozjpegBaseline, MozjpegProgressive, HybridProgressive, HybridMaxCompression via ExpertConfig::from_preset().

Per-Image Metadata (Three-Layer Pattern)

For encoding multiple images with the same config but different metadata:

use zenjpeg::encoder::{ChromaSubsampling, EncoderConfig, Limits, Unstoppable};

// Layer 1: Reusable config
let config = EncoderConfig::ycbcr(85.0, ChromaSubsampling::Quarter)
    .progressive(true);

// Layer 2: Per-image request (metadata, limits, stop token)
let jpeg = config.request()
    .icc_profile(&srgb_icc_bytes)
    .limits(Limits::default().max_output(20 * 1024 * 1024)) // cap encoded size at 20 MB
    .encode(&pixels, 1920, 1080)?;

// Layer 3: Streaming execution
let mut encoder = config.request()
    .icc_profile(&p3_icc_bytes)
    .encode_from_rgb::<rgb::RGB<u8>>(1920, 1080)?;
encoder.push_packed(&pixels, Unstoppable)?;
let jpeg = encoder.finish()?;

Request builder methods (on config.request()): .icc_profile(&[u8]), .exif(impl Into<Exif>), .xmp(&[u8]), .stop(&dyn Stop), and .limits(Limits) — where Limits is zenjpeg::encoder::Limits built via Limits::default().max_pixels(n).max_memory(n).max_output(n).

Pixel Layouts

LayoutBytes/pxNotes
Rgb8Srgb3Default, sRGB gamma
Bgr8Srgb / Bgra8Srgb / Bgrx8Srgb3/4Windows/GDI order
Rgba8Srgb / Rgbx8Srgb4Alpha/pad ignored
Gray8Srgb1Grayscale
Rgb16Linear / Rgba16Linear6/816-bit linear
RgbF32Linear / RgbaF32Linear12/16HDR float (0.0-1.0)

Decoder

Options

MethodDefaultEffect
.chroma_upsampling(method)TriangleNearestNeighbor for speed. Default matches libjpeg-turbo within max_diff ≤ 3
.idct_method(method)JpegliLibjpeg for pixel-exact mozjpeg match (adds ~37% overhead)
.deblock(mode)OffReduce block artifacts (see Deblocking)
.dequant_bias(true)falsef32 IDCT + Laplacian bias for max reconstruction quality
.output_target(target)Srgb8f32 output: SrgbF32, LinearF32, SrgbF32Precise
.output_format(fmt)RgbPixel format: Rgb, Rgba, Bgr, Bgra, Bgrx, Gray
.correct_color(target)NoneICC color management (requires moxcms feature)
.auto_orient(bool)trueApply EXIF orientation in DCT domain
.transform(t)noneLossless rotation/flip during decode
.crop(region)nonePixel-level crop (IDCT skipped outside region)
.num_threads(n)0 (auto)1 forces sequential
.strictness(Strictness)BalancedStrictness::{Strict, Balanced, Lenient, Permissive} (type at zenjpeg::decoder::Strictness)
.max_pixels(u64)120MDoS protection
.max_memory(u64)512 MBMemory limit

Strictness is zenjpeg::decoder::Strictness; .max_pixels / .max_memory take a u64. Example:

use zenjpeg::decoder::{Decoder, Strictness};
use zenjpeg::encoder::Unstoppable;

let result = Decoder::new()
    .strictness(Strictness::Strict)   // reject any spec violation or truncation
    .max_pixels(120_000_000)          // 120 MP cap (admits ~108 MP camera photos)
    .max_memory(512 * 1024 * 1024)    // 512 MB cap
    .decode(&jpeg_bytes, Unstoppable)?;

Decode Paths

For most web JPEGs, Decoder::new().decode(&data, stop) hits the streaming path -- no coefficient storage, one MCU-row pass through entropy/IDCT/color/output. This is the fastest path.

Progressive, CMYK, f32 output, deblocking (Knusperli), and transforms go through the coefficient path. Parallel decode activates automatically when DRI restart markers are present and the image has 1024+ MCU blocks.

See docs/DECODER_PATHS.md for the full decision flow and path matrix.

Output Targets

OutputTargetPixel typeNotes
Srgb8 (default)u8Fastest
SrgbF32f32sRGB gamma, 0.0-1.0
LinearF32f32Linear light (for compositing)
SrgbF32Precisef32Laplacian dequant bias, 1.5-2x slower
LinearF32Precisef32Precise + linearize

Scanline Reader Methods

MethodBytes/pxFormat
read_rows_rgb8()3R-G-B
read_rows_bgr8()3B-G-R
read_rows_rgba8() / read_rows_bgra8()4With alpha=255
read_rows_rgbx8() / read_rows_bgrx8()4With pad=255
read_rows_rgba_f32()16Linear f32 RGBA
read_rows_gray8() / read_rows_gray_f32()1/4Grayscale

Deblocking

JPEG's 8x8 block structure creates visible grid artifacts at low quality. The decoder can reduce these with post-decode filtering.

use zenjpeg::decoder::{Decoder, DeblockMode};
use zenjpeg::encoder::Unstoppable;

let result = Decoder::new()
    .deblock(DeblockMode::Auto)
    .decode(&jpeg_data, Unstoppable)?;
DeblockModeQuality gain (zensim vs original)SpeedStreaming?
Off0% overheadyes
Boundary4Tap+0.5 at Q90, +2 at Q50, +10 at Q10+2% scanlineyes
Knusperli+14 at Q5-Q10, hurts at Q70+20-40% slowerfalls back to buffered
AutoPicks best per quality levelvariesfalls back when needed
AutoStreamableBoundary4Tap only (streaming-safe)+2% scanlinealways

All modes work with both decode() and scanline_reader(). When scanline_reader() needs Knusperli, it transparently falls back to coefficient-based decoding.

Color Management

Requires the moxcms feature (pure Rust). Converts the embedded ICC profile to the target color space during decode.

use zenjpeg::decoder::{Decoder, TargetColorSpace};
use zenjpeg::encoder::Unstoppable;

let img = Decoder::new()
    .correct_color(Some(TargetColorSpace::Srgb))
    .decode(&jpeg_data, Unstoppable)?;

Default is None -- no color conversion. Pixels are returned in the JPEG's native color space.

Lossless Transforms

Rotate, flip, and transpose by manipulating DCT coefficients directly. No decode to pixels, no re-encode, zero generation loss.

use zenjpeg::lossless::{transform, apply_exif_orientation, LosslessTransform, TransformConfig};
use zenjpeg::encoder::Unstoppable;

// Rotate 90 degrees losslessly
let rotated = transform(&jpeg_data, &TransformConfig {
    transform: LosslessTransform::Rotate90,
    ..Default::default()
}, Unstoppable)?;

// Auto-correct EXIF orientation
let oriented = apply_exif_orientation(&jpeg_data, Unstoppable)?;

All 8 D4 dihedral group elements: None, FlipHorizontal, FlipVertical, Transpose, Rotate90, Rotate180, Rotate270, Transverse.

UltraHDR (requires ultrahdr feature)

UltraHDR embeds a gain map inside a standard JPEG so HDR-capable displays get HDR while everything else sees the SDR base image. zenjpeg handles the full stack: encode HDR → UltraHDR JPEG, decode UltraHDR JPEG → HDR pixels.

Encode

use zenjpeg::encoder::{ChromaSubsampling, EncoderConfig, Unstoppable};
use zenjpeg::ultrahdr::{
    encode_ultrahdr, GainMapConfig, ToneMapConfig, UhdrColorGamut, UhdrColorTransfer,
    UhdrPixelFormat, UhdrRawImage,
};

// Your HDR pixels (linear RGB float, any gamut)
let hdr = UhdrRawImage::from_f32_rgb(
    &hdr_pixels, width, height,
    UhdrPixelFormat::Rgb888, UhdrColorGamut::Bt2100,
    UhdrColorTransfer::Linear,
)?;

// One call: tonemap → encode SDR base → compute gain map → assemble MPF container
let ultrahdr_jpeg = encode_ultrahdr(
    &hdr,
    &GainMapConfig::default(),   // gain map quality/resolution
    &ToneMapConfig::default(),   // SDR tonemapping parameters
    &EncoderConfig::ycbcr(85.0, ChromaSubsampling::Quarter),
    75.0,                        // gain map JPEG quality
    Unstoppable,
)?;
// ultrahdr_jpeg is a standard JPEG — works everywhere, HDR on supported displays

Decode (streaming)

use zenjpeg::decoder::Decoder;
use zenjpeg::ultrahdr::{UltraHdrReaderConfig, UltraHdrMode, GainMapMemory};

let config = UltraHdrReaderConfig::new()
    .mode(UltraHdrMode::Hdr)      // HDR output (applies gain map)
    .display_boost(4.0)           // target display peak brightness ratio
    .memory_strategy(GainMapMemory::Streaming);

let mut reader = Decoder::new().ultrahdr_reader(&jpeg_data, config)?;
let width = reader.dimensions().width as usize;
let mut hdr_row = vec![0.0f32; width * 4]; // RGBA f32 per row

while !reader.is_finished() {
    reader.read_rows(1, None, Some(&mut hdr_row), None)?;
    // hdr_row contains linear f32 RGBA pixels for this row
}

Decode modes

UltraHdrModeSDR outputHDR outputGain mapUse case
SdrOnlyyesFastest, ignore HDR
HdryesHDR display/processing
SdrAndHdryesyesPreview + HDR pipeline
SdrAndGainMapyesyesEditing, gain map manipulation

Memory stays bounded regardless of image size — ~500KB peak for SDR-only, ~1MB for HDR mode on 4K images.

Detection

use zenjpeg::decoder::Decoder;
use zenjpeg::encoder::Unstoppable;

let decoded = Decoder::new().decode(&jpeg_data, Unstoppable)?;
if let Some(extras) = decoded.extras() {
    if extras.is_ultrahdr() {
        let (metadata, _) = extras.ultrahdr_metadata().unwrap().unwrap();
        println!("Gain map max boost: {:?}", metadata.gain_map_max);
    }
}

Non-UltraHDR JPEGs decode normally — the feature adds zero overhead when no gain map is present.

Cooperative Cancellation

Both encoder and decoder accept a Stop token for graceful shutdown. Unstoppable and the Stop trait are both re-exported from zenjpeg::encoder (backed by the enough crate) — you do not need to depend on enough directly. The same Unstoppable value works for every decode and encode call.

The no-cancel case needs nothing beyond zenjpeg:

use zenjpeg::decoder::Decoder;
use zenjpeg::encoder::Unstoppable; // re-export; no direct `enough` dep needed

let image = Decoder::new().decode(&jpeg_data, Unstoppable)?;

For real cancellation, implement the Stop trait on your own type (an AtomicBool flag is the usual choice). The trait's one required method is check(&self) -> Result<(), StopReason>; StopReason lives in the enough crate, so this case needs enough as a direct dependency:

[dependencies]
zenjpeg = "0.8"
enough = "0.4"
use std::sync::atomic::{AtomicBool, Ordering};
use enough::{Stop, StopReason};
use zenjpeg::decoder::Decoder;

struct CancelFlag(AtomicBool);
impl Stop for CancelFlag {
    fn check(&self) -> Result<(), StopReason> {
        if self.0.load(Ordering::Relaxed) {
            Err(StopReason::Cancelled)
        } else {
            Ok(())
        }
    }
}

let cancel_token = CancelFlag(AtomicBool::new(false));
// ... a watchdog thread can flip the flag: cancel_token.0.store(true, Ordering::Relaxed);
let result = Decoder::new().decode(&jpeg_data, &cancel_token);

Detect API (Encoder Identification)

Identify the source encoder and quality of any JPEG from its headers (~500 bytes, <1us), then get optimal re-encoding settings.

use zenjpeg::detect::probe;
use zenjpeg::encoder::{EncoderConfig, ChromaSubsampling};

let info = probe(&jpeg_data)?;
println!("Encoder: {:?}, Quality: {:.0}", info.encoder, info.quality.value);

// Get recommended zenjpeg quality to match perceived quality
let config = EncoderConfig::ycbcr(
    info.recommended_quality(),
    info.recommended_subsampling(),
);

Detected families: LibjpegTurbo, Mozjpeg, CjpegliYcbcr, CjpegliXyb, ImageMagick, IjgFamily, Unknown. Configurable quality/size tradeoff via info.reencode_settings(tolerance).

Recompress

Requires the recompress feature. Recompress an already-encoded JPEG to a target zensim Profile A quality ([0, 100], higher = closer to the original) with minimal generation loss and no size regression. One entry point routes between NoOp / Lossless (scan re-pack) / Preserve (coefficient-domain requant, incl. same-family Robidoux retargeting for mozjpeg/ImageMagick) / Tuned / Deblock, picking the smallest output that hits the target, using per-encoder calibration (libjpeg-turbo, mozjpeg, jpegli) fit on 50 CID22-512 references.

use zenjpeg::recompress::{recompress, Budget, Confidence, RecompressOptions};

let opts = RecompressOptions::new(80.0)        // target zensim-A, 0..=100
    .with_budget(Budget::OneShot)               // default; no IQA loop
    .with_confidence(Confidence::P50);          // P25/P50/P75/P90/P95 delivery confidence

let result = recompress(&jpeg_bytes, &opts)?;

// `output_bytes()` is `Some` for a recompressed/lossless result, `None` for
// NoOp (source already meets target — keep the input):
let out: &[u8] = result.output_bytes().unwrap_or(&jpeg_bytes);
# Ok::<(), zenjpeg::recompress::Error>(())

The result carries strategy, the projected quality vs the original, and (with the IQA loop) a measured generation-loss score. Budget: OneShot (default, calibration-only, needs only the recompress feature) or — with recompress-iqaMaxIterations(n) / MaxTime(d), which measure generation loss and bump the dial to land closer to target. Confidence shifts the internal aim so a chosen quantile of images clears the target (content variance is large, so a bare target under-delivers on ~half the images at P50).

Invariants: output is never larger than the source (lossless fallback + byte-level guard), and the user's target — not the confidence-shifted aim — gates the NoOp decision. See docs/recompress/RECOMPRESSION_COMPENDIUM.md for the strategy taxonomy, generation-loss math, and calibration provenance.

Performance

Decode is competitive with libjpeg-turbo (C+NASM) on baseline and faster on progressive; encode lands within ~15–20% of C++ jpegli at matched quality, and parallel decode scales near-linearly when restart markers are present. All numbers below were measured on a Ryzen 9 7950X (WSL2) with the default compiler target (no -C target-cpu=native). Full methodology, competitor versions, and pinned-commit reproduction: benchmarks/README.md.

Encode

Tested on CID22 corpus (337 real photos), size-matched comparison against mozjpeg (Ryzen 9 7950X):

Modevs mozjpegWin rate
auto_optimize(true) (trellis)+0.64 zensim, -0.36 butteraugli81%
Default (no trellis)+0.07 zensim, -0.36 butteraugli--

Progressive produces ~3% smaller files at the same quality, takes ~2x longer to encode.

Decode

Baseline 4:2:0 throughput (zenbench, 10 CID22 photos, Ryzen 9 7950X):

DecoderThroughputvs libjpeg-turbo
libjpeg-turbo/mozjpeg (C+NASM)78.1 MiB/s--
zenjpeg default (Triangle)73.8 MiB/s0.94x
zenjpeg NearestNeighbor80.4 MiB/s1.03x

6% slower than C+NASM on baseline with the default Triangle upsampling (libjpeg-turbo compatible rounding). NearestNeighbor (box filter) matches or beats C. On progressive JPEGs, zenjpeg is 1.35x faster (46 vs 34 MiB/s) due to the fused single-pass architecture.

Parallel decode (baseline with DRI, --features parallel):

Sizelibjpeg-turbozenjpeg parallelratio
10243.86ms1.56ms0.40x
204815.8ms3.05ms0.19x
409665.3ms8.74ms0.13x

Parallel activates automatically with DRI and 1024+ MCU blocks. Use num_threads(1) to force sequential.

Known Limitations

  • Baseline decode speed: ~6% slower than libjpeg-turbo (C+NASM) on baseline JPEGs with the default Triangle upsampling. Faster on progressive.
  • XYB decode speed: XYB images use the f32 pipeline; standard JPEGs use the fast integer IDCT.
  • XYB file size: Baseline mode is 2-3% larger than C++ jpegli. Progressive mode matches or beats.
  • Decoder API is prerelease: expect breaking changes.

Table Optimization

The EncodingTables API provides fine-grained control over quantization and zero-bias tables for codec research.

use zenjpeg::encoder::tuning::{EncodingTables, ScalingParams, dct};

let mut tables = EncodingTables::default_ycbcr();
tables.scale_quant(0, 5, 1.2);  // 20% higher quantization at position 5

let config = EncoderConfig::ycbcr(85.0, ChromaSubsampling::Quarter)
    .tables(Box::new(tables));

Helpers: dct::freq_distance(k), dct::IMPORTANCE_ORDER, tables.blend(&other, t), tables.quant.scale_all(f).

C++ Parity

Tested against C++ jpegli on frymire.png (1118x1105) using jpegli_set_distance() (3-table mode):

MetricDifference
File size (Q85 seq)-0.1%
File size (Q85 prog)+0.5%
SSIMULACRA2 (Q85)identical

When comparing: always use jpegli_set_distance(), not jpeg_set_quality(). The latter uses 2 chroma tables vs our 3, inflating apparent differences. Use .separate_chroma_tables(false) to match 2-table mode.

SIMD and Platform Support

SIMD dispatch is handled by archmage at runtime — no compile-time target flags required. Supported instruction sets:

  • x86-64: AVX2/FMA, AVX-512
  • aarch64: NEON
  • wasm32: SIMD128 (build with RUSTFLAGS="-C target-feature=+simd128")
  • Scalar fallback on all other targets

CI runs on Ubuntu x86-64, Ubuntu ARM64, macOS ARM64, macOS Intel, Windows x86-64, Windows ARM64, and i686 (via cross).

Development

cargo test --release                    # ~930 tests, no external deps
cargo test --release --test cpp_parity_locked  # Quick C++ parity check
cargo test --release -- --ignored       # Full suite (needs C++ build + corpus)

Acknowledgments

Built on ideas from jpegli (Google, BSD-3-Clause) and mozjpeg (Mozilla). After six rewrites from the initial jpegli port, zenjpeg is an independent project with its own architecture, streaming pipeline, and quality optimizations.

AI Disclosure

Developed with assistance from Claude (Anthropic). Extensively tested against the C++ reference with 930+ tests. Report issues at https://github.com/imazen/zenjpeg/issues.

License

Dual-licensed: AGPL-3.0 or commercial.

I've maintained and developed open-source image server software -- and the 40+ library ecosystem it depends on -- full-time since 2011. Fifteen years of continual maintenance, backwards compatibility, support, and the (very rare) security patch. That kind of stability requires sustainable funding, and dual-licensing is how we make it work without venture capital or rug-pulls. Support sustainable and secure software; swap patch tuesday for patch leap-year.

Our open-source products

Your options:

  • Startup license -- $1 if your company has under $1M revenue and fewer than 5 employees. Get a key
  • Commercial subscription -- Governed by the Imazen Site-wide Subscription License v1.1 or later. Apache 2.0-like terms, no source-sharing requirement. Sliding scale by company size. Pricing & 60-day free trial
  • AGPL v3 -- Free and open. Share your source if you distribute.

See LICENSE-COMMERCIAL for details.

Image tech I maintain

Codecs ¹zenjpeg · zenpng · zenwebp · zengif · zenavif · zenjxl · zenbitmaps · heic · zentiff · zenpdf · zensvg · zenjp2 · zenraw · ultrahdr
Codec internalszenjxl-decoder · jxl-encoder · zenrav1e · rav1d-safe · zenavif-parse · zenavif-serialize
Compressionzenflate · zenzop · zenzstd
Processingzenresize · zenquant · zenblend · zenfilters · zensally · zentone
Pixels & colorzenpixels · zenpixels-convert · linear-srgb · garb
Pipeline & frameworkzenpipe · zencodec · zencodecs · zenlayout · zennode · zenwasm · zentract
Metricszensim · fast-ssim2 · butteraugli · zenmetrics · resamplescope-rs
Pickers & MLzenanalyze · zenpredict · zenpicker
ProductsImageflow image engine (.NET · Node · Go) · Imageflow Server · ImageResizer (C#)

¹ pure-Rust, #![forbid(unsafe_code)] codecs, as of 2026

General Rust awesomeness

zenbench · archmage · magetypes · enough · whereat · cargo-copter

Open source · @imazen · @lilith · lib.rs/~lilith