I'm trying to save a BufferedImage as a .tiff.
The following:
ImageIO.write(b ufferedImg, "TIFF", new File("file.tiff "));
is returning false.
Do I need to use JAI?
I'm just trying to use the easiest way to save a .tiff.
Thanks.
The following:
ImageIO.write(b ufferedImg, "TIFF", new File("file.tiff "));
is returning false.
Do I need to use JAI?
I'm just trying to use the easiest way to save a .tiff.
Thanks.
Comment