IFF: Thumbnail support for XS24 chunk (now without stderr output)

This commit is contained in:
Harald Kuhr 2022-02-04 12:13:53 +01:00
parent f5cfa0e619
commit 7167f81c69

View File

@ -37,9 +37,6 @@ final class XS24Chunk extends IFFChunk {
throw new IIOException("Bad XS24 chunk: " + width + " * " + height + " * 3 > chunk length (" + chunkLength + ")"); throw new IIOException("Bad XS24 chunk: " + width + " * " + height + " * 3 > chunk length (" + chunkLength + ")");
} }
System.err.println("chunkLength: " + chunkLength);
System.err.println("dataLength: " + dataLength);
data = new byte[dataLength]; data = new byte[dataLength];
input.readFully(data); input.readFully(data);