Home | History | Annotate | Download | only in java

Lines Matching defs:out

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