You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "--help" option of imginfo misses the option "X", "default-memory-limit", "list-enabled-formats“,"list-all-formats", "enable-format" and "enable-all-formats" for version 3.0.6.
For the option "X", the following code appears during option parsing and modifies the special in src/app/imginfo.c:207-208 for version 3.0.6.
special = 1;
break;
For the option "default-memory-limit", the following code appears during option parsing and modifies the default_mem_limit in src/app/imginfo.c:210-211 for version 3.0.6.
default_mem_limit = true;
break;
For the option "list-enabled-formats", the following code appears during option parsing and modifies the list_codecs and list_codecs_all in src/app/imginfo.c:217-219 for version 3.0.6.
list_codecs = 1;
list_codecs_all = 0;
break;
For the option "list-all-formats", the following code appears during option parsing and modifies the list_codecs and list_codecs_all in src/app/imginfo.c:213-215 for version 3.0.6.
list_codecs = 1;
list_codecs_all = 1;
break;
For the option "enable-format", the following code appears during option parsing and modifies the enable_format in src/app/imginfo.c:221-222 for version 3.0.6.
enable_format = jas_optarg;
break;
For the option "enable-all-formats", the following code appears during option parsing and modifies the enable_all_formats in src/app/imginfo.c:224-225 for version 3.0.6.
enable_all_formats = 1;
break;
But they do not appear in the document provided by "--help".
It may prevent users from using the relevant function.
The text was updated successfully, but these errors were encountered:
ccccmd
changed the title
For imginfo, the help document misses some options
[Help document bug] For imginfo, the help document misses some options
Sep 30, 2022
Some command-line options for the jasper, imginfo, imgcmp, and jiv
programs (that are not deemed to be for internal use only) were not
documented in the manual. Descriptions for these options have now been
added to the manual.
The help information message printed by each of the jasper, imginfo,
imgcmp, and jiv programs has been improved. A mention of the URL for the
online documentation is now included in all help messages. A comment
has also been added indicating that not all options are listed in the
help message and that the manual should be checked for a complete list
of options (excluding, of course, the ones that are deemed to be for
internal use only and are deliberately undocumented).
The "--help" option of imginfo misses the option "X", "default-memory-limit", "list-enabled-formats“,"list-all-formats", "enable-format" and "enable-all-formats" for version 3.0.6.
But they do not appear in the document provided by "--help".
It may prevent users from using the relevant function.
The text was updated successfully, but these errors were encountered: