src/main/java/org/apache/commons/imaging/formats/tiff/datareaders/DataReaderStrips.java [395:411]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final int xRaster;
        final int yRaster;
        final int rasterWidth;
        final int rasterHeight;
        if (subImage != null) {
            xRaster = subImage.x;
            yRaster = subImage.y;
            rasterWidth = subImage.width;
            rasterHeight = subImage.height;
        } else {
            xRaster = 0;
            yRaster = 0;
            rasterWidth = width;
            rasterHeight = height;
        }

        final int[] rasterDataInt = Allocator.intArray(rasterWidth * rasterHeight);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/commons/imaging/formats/tiff/datareaders/DataReaderTiled.java [332:347]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final int xRaster;
        final int yRaster;
        final int rasterWidth;
        final int rasterHeight;
        if (subImage != null) {
            xRaster = subImage.x;
            yRaster = subImage.y;
            rasterWidth = subImage.width;
            rasterHeight = subImage.height;
        } else {
            xRaster = 0;
            yRaster = 0;
            rasterWidth = width;
            rasterHeight = height;
        }
        final int[] rasterDataInt = Allocator.intArray(rasterWidth * rasterHeight);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



