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

(cherry picked from commit 7167f81c69)
This commit is contained in:
Harald Kuhr
2022-02-04 12:13:53 +01:00
parent 954dffd213
commit 11ee7e5e23

View File

@@ -37,9 +37,6 @@ final class XS24Chunk extends IFFChunk {
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];
input.readFully(data);