400 is too small

This commit is contained in:
Michael Peter Christen 2024-05-25 01:21:06 +02:00
parent 5f4ea9ac5d
commit b8479430b6

View File

@ -1000,7 +1000,7 @@ public class RasterPlotter {
final int height = image.getHeight(null);
final Deflater scrunch = new Deflater(compressionLevel);
ByteBuffer outBytes = new ByteBuffer(1024 * 300); // avoid frequent resizing of the ByteBuffer
ByteBuffer outBytes = new ByteBuffer(1024 * 400); // avoid frequent resizing of the ByteBuffer
final OutputStream compBytes = new BufferedOutputStream(new DeflaterOutputStream(outBytes, scrunch, 2048, false), 16384);
int i = 0;
for (int row = 0; row < height; row++) {