R
Rupert Woodman
Hi,
I have the following code:
String inputFilename = "input.jpg";
String outputFilename = "output.jpg";
BufferedImage bi = ImageIO.read(new File(inputFilename()));
ImageIO.write(bi, "jpg", new File(outputFilename));
The original file is about 1.5 meg in size, the written file is 240kb. What
I don't understand is what changes have been made to the image (I've not
specified any), and how I can control those changes?
Thank you for any thoughts you may have.
rgds
Rupert
I have the following code:
String inputFilename = "input.jpg";
String outputFilename = "output.jpg";
BufferedImage bi = ImageIO.read(new File(inputFilename()));
ImageIO.write(bi, "jpg", new File(outputFilename));
The original file is about 1.5 meg in size, the written file is 240kb. What
I don't understand is what changes have been made to the image (I've not
specified any), and how I can control those changes?
Thank you for any thoughts you may have.
rgds
Rupert