diff options
author | ppatience0 <ppatience0@gmail.com> | 2013-07-20 12:11:52 -0400 |
---|---|---|
committer | ppatience0 <ppatience0@gmail.com> | 2013-07-20 12:11:52 -0400 |
commit | 105155880c05e0edb112b2b03597c6fab5830429 (patch) | |
tree | 4932e6ec0769a8da67c292ae0b75a1e047c35c08 /sys/man/1/jpg | |
parent | 360cabb85846e4d344d6f9aaf4082cf42683a91c (diff) |
tojpg, totif: change flags to better match those of the decoders
Diffstat (limited to 'sys/man/1/jpg')
-rw-r--r-- | sys/man/1/jpg | 53 |
1 files changed, 28 insertions, 25 deletions
diff --git a/sys/man/1/jpg b/sys/man/1/jpg index 1b23aad72..60202d701 100644 --- a/sys/man/1/jpg +++ b/sys/man/1/jpg @@ -70,7 +70,7 @@ jpg, gif, png, tif, ppm, bmp, v210, yuv, ico, tga, tojpg, togeordi, togif, toppm .B -c .I comment ] [ -.B -gs +.B -ks ] [ .I file ] @@ -80,7 +80,7 @@ jpg, gif, png, tif, ppm, bmp, v210, yuv, ico, tga, tojpg, togeordi, togif, toppm .B -c .I comment ] [ -.B -g +.B -k ] [ .I file ] @@ -133,7 +133,7 @@ jpg, gif, png, tif, ppm, bmp, v210, yuv, ico, tga, tojpg, togeordi, togif, toppm .B -c .I comment ] [ -.B -bBgGhHlLmprtT +.B -3bgGhklLptvyY ] [ .I file ] @@ -269,10 +269,10 @@ option makes output raw PPM. The default is to output plain PPM. The -.B -g +.B -k option makes .I tojpg -output grayscale images, +output grey-scale images, and the .B -s option makes it output scratched JPEG images. @@ -285,48 +285,51 @@ script that invokes .I Totif accepts many options. Choosing Huffman, T4, or T6 compression -forces the output to be a bilevel image. +forces the image to GREY1. .TP -.B -b -Output a bilevel (GREY1) image. +.B -3 +Convert the image to a true color RGB image. .TP -.B -B -Output a grayscale (GREY2) image. +.B -b +Convert the image to a GREY1 black and white image. .TP .B -g -Output a grayscale (GREY4) image. +Use T4 one-dimensional compression. .TP .B -G -Output a grayscale (GREY8) image. +Use T4 two-dimensional compression. .TP .B -h Use Huffman compression. .TP -.B -H -Use T4 one-dimensional compression. +.B -k +Convert the image to a GREY8 grey-scale image. .TP .B -l Use LZW compression. .TP .B -L Use LZW compression with horizontal differencing. -Note that some TIFF decoders may not accept horizontal -differencing applied to images with depths less than eight. -.TP -.B -m -Output a color (CMAP8) image. +Some TIFF decoders may not support horizontal +differencing applied to images of depths less than eight. .TP .B -p Use Packbits compression. .TP -.B -r -Output a color (BGR24) image. -.TP .B -t -Use T4 two-dimensional compression. -.TP -.B -T Use T6 compression. +.TP +.B -v +Convert the image to an RGBV color-mapped image. +.TP +.B -y +Convert the image to a GREY2 grey-scale image. +.I Totif +will then convert it to GREY4 before encoding +because TIFF does not support depths of two. +.TP +.B -Y +Convert the image to a GREY4 grey-scale image. .PP If there is only one input picture, .I togif |