rimage 0.12.3

Optimize images natively with best-in-class codecs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use clap::Command;
use indoc::indoc;

use crate::cli::common::CommonArgs;

pub fn jpeg_xl() -> Command {
    Command::new("jpeg_xl")
        .alias("jxl")
        .about("Encode images into JpegXL format. (Big but Lossless)")
        .long_about(indoc! {r#"Encode images into jpeg xl format.

        Only supports lossless encoding"#})
        .common_args()
}