Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion jxrencoderdecoder/JxrDecApp.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,9 @@ void WmpDecAppUsage(const char* szExe)
printf(CRLF);
printf(" -i input.jxr/wdp Input JPEG XR/HD Photo file name" CRLF);
printf(CRLF);
printf(" -o output.bmp/tif/jxr Output image file name" CRLF);
printf(" -o output.bmp/pnm/tif/jxr Output image file name" CRLF);
printf(" bmp: <=8bpc, BGR" CRLF);
printf(" pnm: >=8bpc, RGB" CRLF);
printf(" tif: >=8bpc, RGB" CRLF);
printf(" jxr: for compressed domain transcode" CRLF);
printf(CRLF);
Expand Down
3 changes: 2 additions & 1 deletion jxrencoderdecoder/JxrEncApp.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@ void WmpEncAppUsage(const char* szExe)
printf(CRLF);
printf("%s [options]..." CRLF, szExe);
printf(CRLF);
printf(" -i input.bmp/tif/hdr Input image file name" CRLF);
printf(" -i input.bmp/pnm/tif/hdr Input image file name" CRLF);
printf(" bmp: <=8bpc, BGR" CRLF);
printf(" pnm: >=8bpc, RGB" CRLF);
printf(" tif: >=8bpc, RGB" CRLF);
printf(" hdr: 32bppRGBE only" CRLF);
printf(CRLF);
Expand Down