Lines Matching full:system
48 System.out.println("\nUSAGE: java " + classname + " <Input file> <Output file> [options]\n");
49 System.out.println("Input and output files can be any image format that the Java Image I/O");
50 System.out.println("extensions understand. If either filename ends in a .jpg extension, then");
51 System.out.println("TurboJPEG will be used to compress or decompress the file.\n");
52 System.out.println("Options:\n");
53 System.out.println("-scale M/N = if the input image is a JPEG file, scale the width/height of the");
54 System.out.print(" output image by a factor of M/N (M/N = ");
56 System.out.print(sf[i].getNum() + "/" + sf[i].getDenom());
58 System.out.print(" or ");
61 System.out.print(", ");
63 System.out.print("or ");
66 System.out.println(")\n");
67 System.out.println("-samp <444|422|420|gray> = If the output image is a JPEG file, this specifies");
68 System.out.println(" the level of chrominance subsampling to use when");
69 System.out.println(" recompressing it. Default is to use the same level");
70 System.out.println(" of subsampling as the input, if the input is a JPEG");
71 System.out.println(" file, or 4:4:4 otherwise.\n");
72 System.out.println("-q <1-100> = If the output image is a JPEG file, this specifies the JPEG");
73 System.out.println(" quality to use when recompressing it (default = 95).\n");
74 System.out.println("-hflip, -vflip, -transpose, -transverse, -rot90, -rot180, -rot270 =");
75 System.out.println(" If the input image is a JPEG file, perform the corresponding lossless");
76 System.out.println(" transform prior to decompression (these options are mutually exclusive)\n");
77 System.out.println("-grayscale = If the input image is a JPEG file, perform lossless grayscale");
78 System.out.println(" conversion prior to decompression (can be combined with the other");
79 System.out.println(" transforms above)\n");
80 System.out.println("-crop X,Y,WxH = If the input image is a JPEG file, perform lossless cropping");
81 System.out.println(" prior to decompression. X,Y specifies the upper left corner of the");
82 System.out.println(" cropping region, and WxH specifies its width and height. X,Y must be");
83 System.out.println(" evenly divible by the MCU block size (8x8 if the source image was");
84 System.out.println(" compressed using no subsampling or grayscale, or 16x8 for 4:2:2 or 16x16");
85 System.out.println(" for 4:2:0.)\n");
86 System.out.println("-display = Display output image (Output file need not be specified in this");
87 System.out.println(" case.)\n");
88 System.out.println("-fastupsample = Use the fastest chrominance upsampling algorithm available in");
89 System.out.println(" the underlying codec\n");
90 System.out.println("-fastdct = Use the fastest DCT/IDCT algorithms available in the underlying");
91 System.out.println(" codec\n");
92 System.out.println("-accuratedct = Use the most accurate DCT/IDCT algorithms available in the");
93 System.out.println(" underlying codec\n");
94 System.exit(1);
217 System.out.println("Using fast upsampling code");
221 System.out.println("Using fastest DCT/IDCT algorithm");
225 System.out.println("Using most accurate DCT/IDCT algorithm");
249 System.out.println("Input file contains no data");
250 System.exit(1);
271 System.out.println("Source Image: " + width + " x " + height +
283 System.exit(0);
308 System.gc();
310 System.out.print("Dest. Image (" + outFormat + "): " + width + " x " +
319 System.out.println(", " + sampName[outSubsamp] +
341 System.out.print("\n");
348 System.exit(-1);