Progressive JPEG parser for HTTP/2 parallel progressive streaming feature.
It scans a JPEG file looking for Start Of Scan markers. Computes optimal offsets for the cf-priority-change
header to render "DC-only" and "good enough" progressive stages.
Install Rust 1.38 or later.
Examples give useful results only for progressive JPEG files.
sh
cargo run --example scan -- image.jpg
Will show the scan script used to generate image.jpg
.
sh
cargo run --example cf-priority -- image.jpg
Will show Cloudflare's cf-priority
(first line) and cf-priority-change
(second line) headers with breakpoints for the image.jpg
.
sh
cargo run -- image.jpg
Prints contents of the cf-priority-change
header to stdout or an error to stderr.
sh
cargo build --release
Makes ./target/release/soos-cf-priority
executable.
The same can be done programmatically by using this crate as a library and calling soos::cf_priority_change_header(jpeg_bytes)
. Run cargo doc --open
for details.