Skip to content

Commit

Permalink
feat: added long_about to jxl codec
Browse files Browse the repository at this point in the history
  • Loading branch information
SalOne22 committed Mar 15, 2024
1 parent ccd249c commit 8a19d4b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/cli/codecs/jpeg_xl.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
use clap::Command;
use indoc::indoc;

pub fn jpeg_xl() -> Command {
Command::new("jpeg_xl")
.about("Encode images into jpeg xl format")
.alias("jxl")
.about("Encode images into jpeg xl format")
.long_about(indoc! {"Encode images into jpeg xl format
Only supports lossless encoding"})
}

0 comments on commit 8a19d4b

Please sign in to comment.