Tiff compression using Java ImageIO

会有一股神秘感。 提交于 2019-11-29 02:24:21

Writer.getDefaultWriteParam() only creates an ImageWriteParam object, it doesn't link it back to anything else.

I don't see any mechanism in your code for your modified param object to be subsequently used in the ImageWriter.

I believe that instead of:

writer.write(bi);

you need to use:

writer.write(null, new IIOImage(bi, null, null), param);

I don't know Java IO, but generally you want to look at a few things

  1. Can you use JPEG compression instead of LZW?
  2. See how to set the TIFF strip size -- if small size is what you want, set it to the height of the image.

Edit: Looks like a TiffWriteParam has the following methods

tiffWriteParam.setTilingMode(ImageWriteParam.MODE_EXPLICIT);
tiffWriteParam.setTiling(imageWidth, imageHeight, 0, 0);

set the imageWidth and imageHeight vars to your image's size. The downside is that it will be slower to read out regions of the image.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!