From 2def1fe6355baf929419dd002ff318fb60bb6278 Mon Sep 17 00:00:00 2001 From: James Zern Date: Wed, 23 Jul 2014 20:02:43 -0700 Subject: [PATCH] gif2webp: dust up the help message * try to avoid trailing '.' * rationalize capitalization missed in: 0a8b886 dust up the help message Change-Id: I6f80736cc8a2ff4f185f63d463a57d5bbf88a0db --- README | 20 ++++++++++---------- examples/gif2webp.c | 20 ++++++++++---------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/README b/README index 0e171c52..e4867e88 100644 --- a/README +++ b/README @@ -337,24 +337,24 @@ vwebp. Usage: gif2webp [options] gif_file -o webp_file -options: +Options: -h / -help ............ this help - -lossy ................. Encode image using lossy compression. - -mixed ................. For each frame in the image, pick lossy - or lossless compression heuristically. + -lossy ................. encode image using lossy compression + -mixed ................. for each frame in the image, pick lossy + or lossless compression heuristically -q ............. quality factor (0:small..100:big) -m ............... compression method (0=fast, 6=slowest) - -kmin ............ Min distance between key frames - -kmax ............ Max distance between key frames + -kmin ............ min distance between key frames + -kmax ............ max distance between key frames -f ............... filter strength (0=off..100) -metadata ..... comma separated list of metadata to - copy from the input to the output if present. + copy from the input to the output if present Valid values: all, none, icc, xmp (default) -mt .................... use multi-threading if available - -version ............... print version number and exit. - -v ..................... verbose. - -quiet ................. don't print anything. + -version ............... print version number and exit + -v ..................... verbose + -quiet ................. don't print anything Building: --------- diff --git a/examples/gif2webp.c b/examples/gif2webp.c index e8dcbd3e..395068b9 100644 --- a/examples/gif2webp.c +++ b/examples/gif2webp.c @@ -223,26 +223,26 @@ enum { static void Help(void) { printf("Usage:\n"); printf(" gif2webp [options] gif_file -o webp_file\n"); - printf("options:\n"); + printf("Options:\n"); printf(" -h / -help ............ this help\n"); - printf(" -lossy ................. Encode image using lossy compression.\n"); - printf(" -mixed ................. For each frame in the image, pick lossy\n" - " or lossless compression heuristically.\n"); + printf(" -lossy ................. encode image using lossy compression\n"); + printf(" -mixed ................. for each frame in the image, pick lossy\n" + " or lossless compression heuristically\n"); printf(" -q ............. quality factor (0:small..100:big)\n"); printf(" -m ............... compression method (0=fast, 6=slowest)\n"); - printf(" -kmin ............ Min distance between key frames\n"); - printf(" -kmax ............ Max distance between key frames\n"); + printf(" -kmin ............ min distance between key frames\n"); + printf(" -kmax ............ max distance between key frames\n"); printf(" -f ............... filter strength (0=off..100)\n"); printf(" -metadata ..... comma separated list of metadata to\n"); printf(" "); - printf("copy from the input to the output if present.\n"); + printf("copy from the input to the output if present\n"); printf(" " "Valid values: all, none, icc, xmp (default)\n"); printf(" -mt .................... use multi-threading if available\n"); printf("\n"); - printf(" -version ............... print version number and exit.\n"); - printf(" -v ..................... verbose.\n"); - printf(" -quiet ................. don't print anything.\n"); + printf(" -version ............... print version number and exit\n"); + printf(" -v ..................... verbose\n"); + printf(" -quiet ................. don't print anything\n"); printf("\n"); }