mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2026-04-30 00:00:01 -04:00
TMI #237: Fix for CCITT images with more b/w changes than columns
This commit is contained in:
+2
-2
@@ -86,8 +86,8 @@ final class CCITTFaxDecoderStream extends FilterInputStream {
|
||||
fillOrder, "Expected fill order 1 or 2: %s"
|
||||
);
|
||||
|
||||
this.changesReferenceRow = new int[columns];
|
||||
this.changesCurrentRow = new int[columns];
|
||||
this.changesReferenceRow = new int[columns + 1];
|
||||
this.changesCurrentRow = new int[columns + 1];
|
||||
|
||||
switch (type) {
|
||||
case TIFFExtension.COMPRESSION_CCITT_T4:
|
||||
|
||||
Reference in New Issue
Block a user