Home | History | Annotate | Download | only in jpeg

Lines Matching full:stderr

144   fprintf(stderr, "usage: %s [switches] ", progname);
146 fprintf(stderr, "inputfile outputfile\n");
148 fprintf(stderr, "[inputfile]\n");
151 fprintf(stderr, "Switches (names may be abbreviated):\n");
152 fprintf(stderr, " -quality N Compression quality (0..100; 5-95 is useful range)\n");
153 fprintf(stderr, " -grayscale Create monochrome JPEG file\n");
155 fprintf(stderr, " -optimize Optimize Huffman table (smaller file, but slow compression)\n");
158 fprintf(stderr, " -progressive Create progressive JPEG file\n");
161 fprintf(stderr, " -targa Input file is Targa format (usually not needed)\n");
163 fprintf(stderr, "Switches for advanced users:\n");
165 fprintf(stderr, " -dct int Use integer DCT method%s\n",
169 fprintf(stderr, " -dct fast Use fast integer DCT (less accurate)%s\n",
173 fprintf(stderr, " -dct float Use floating-point DCT method%s\n",
176 fprintf(stderr, " -restart N Set restart interval in rows, or in blocks with B\n");
178 fprintf(stderr, " -smooth N Smooth dithered input (N=1..100 is strength)\n");
180 fprintf(stderr, " -maxmemory N Maximum memory to use (in kbytes)\n");
181 fprintf(stderr, " -outfile name Specify name for output file\n");
182 fprintf(stderr, " -verbose or -debug Emit debug output\n");
183 fprintf(stderr, "Switches for wizards:\n");
185 fprintf(stderr, " -arithmetic Use arithmetic coding\n");
187 fprintf(stderr, " -baseline Force baseline quantization tables\n");
188 fprintf(stderr, " -qtables file Use quantization tables given in file\n");
189 fprintf(stderr, " -qslots N[,...] Set component quantization tables\n");
190 fprintf(stderr, " -sample HxV[,...] Set component sampling factors\n");
192 fprintf(stderr, " -scans file Create multi-scan JPEG per script file\n");
252 fprintf(stderr, "%s: sorry, arithmetic coding not supported\n",
280 fprintf(stderr, "Independent JPEG Group's CJPEG, version %s\n%s\n",
308 fprintf(stderr, "%s: sorry, entropy optimization was not compiled\n",
325 fprintf(stderr, "%s: sorry, progressive output was not compiled\n",
393 fprintf(stderr, "%s: sorry, multi-scan output was not compiled\n",
517 fprintf(stderr, "%s: must name one input and one output file\n",
524 fprintf(stderr, "%s: must name one input and one output file\n",
532 fprintf(stderr, "%s: only one input file\n", progname);
540 fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
551 fprintf(stderr, "%s: can't open %s\n", progname, outfilename);