summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2018-10-25 23:05:08 -0700
committerJames Zern <jzern@google.com>2018-10-26 22:53:15 -0700
commit301a2ddae59ddb9ef247852301478962e0d82f04 (patch)
treed611a3e17d8986afc68fd909abf8c789139d3f30
parentf0abab921737e71d04c314748d784774caafbc02 (diff)
downloadlibwebp-301a2ddae59ddb9ef247852301478962e0d82f04.tar.gz
img2webp: add help note about arguments from a file
this was added in: 94a8377b extract the command-line parsing helpers to example_util and matches the help in webpmux https://groups.google.com/a/webmproject.org/d/msg/webp-discuss/DJs-w_-Id6o/svFXs2CqBgAJ BUG=webp:101 Change-Id: I2944d1fb1ed3030c356960be2a6c8de15a79311f (cherry picked from commit b6284d8247b0bc2c27efa37cdbf3c6a46a0f1791)
-rw-r--r--examples/img2webp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/img2webp.c b/examples/img2webp.c
index 2f750c59..c440b36a 100644
--- a/examples/img2webp.c
+++ b/examples/img2webp.c
@@ -61,6 +61,10 @@ static void Help(void) {
printf("\n");
printf("example: img2webp -loop 2 in0.png -lossy in1.jpg\n"
" -d 80 in2.tiff -o out.webp\n");
+ printf("\nNote: if a single file name is passed as the argument, the "
+ "arguments will be\n");
+ printf("tokenized from this file. The file name must not start with "
+ "the character '-'.\n");
}
//------------------------------------------------------------------------------