Skip to content

Commit

Permalink
Document additional tiffcomment options
Browse files Browse the repository at this point in the history
  • Loading branch information
melissalinkert committed Dec 12, 2024
1 parent f33369f commit 47661c2
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static void main(String[] args) throws FormatException, IOException {
if (args.length == 0) {
System.out.println("Usage:");
System.out.println(
"tiffcomment [-set comment] [-edit] file1 [file2 ...]");
"tiffcomment [-version] [-debug] [-trace] [-no-upgrade] [-set comment] [-edit] file1 [file2 ...]");
System.out.println();

System.out.println("This tool requires an ImageDescription tag to be " +
Expand All @@ -71,6 +71,12 @@ public static void main(String[] args) throws FormatException, IOException {
System.out.println(" * '-', to enter the comment using stdin. " +
"Entering a blank line will");
System.out.println(" terminate reading from stdin.");
System.out.println();
System.out.println("Additional options:");
System.out.println(" -version: print the library version");
System.out.println(" -no-upgrade: do not perform the upgrade check");
System.out.println(" -debug: enable DEBUG-level logging");
System.out.println(" -trace: enable TRACE-level logging");
return;
}

Expand Down

0 comments on commit 47661c2

Please sign in to comment.