Should I write
BufferedOutputStream os = new BufferedOutputStream(new FileOutputStream(file));
ImageIO.write(im, "JPEG", os);
instead of
ImageIO.write(im, "JPEG", file);
I.e. are ImageIO file operations buffered by default or not?
Thanks!
|
|
If you pass in a |
|||||||||||
|
|
I believe it depends on the specific implementation of the I would expect it to be buffered, but I suppose you could go with the first option to be completely sure. |
|||
|
|
|
You will need to use BufferedOutputStream (As in ex. 1 mentioned in question). ImageIo.write is not buffered by default. It depends upon what you pass to it in arguments. In case of File object being passed it won't be buffered write. |
|||
|
|