@@ -2995,3 +2995,38 @@ def test_tiff_ovr_JXL_ALPHA_DISTANCE_OVERVIEW(tmp_vsimem):
2995
2995
assert ds .GetRasterBand (4 ).Checksum () != cs4
2996
2996
del ds
2997
2997
gdal .Unlink (tmpfilename + ".ovr" )
2998
+
2999
+
3000
+ ###############################################################################
3001
+ # Test fix for https://github.com/OSGeo/gdal/issues/11555
3002
+
3003
+
3004
+ def test_tiff_ovr_internal_mask_issue_11555 (tmp_vsimem ):
3005
+
3006
+ if "debug build" in gdal .VersionInfo ("--version" ) and "CI" in os .environ :
3007
+ pytest .skip ("test skipped on CI for debug builds (to keep things fast)" )
3008
+
3009
+ tmpfilename = str (tmp_vsimem / "test.tif" )
3010
+ gdal .FileFromMemBuffer (tmpfilename , open ("data/test_11555.tif" , "rb" ).read ())
3011
+
3012
+ ds = gdal .Open (tmpfilename , gdal .GA_Update )
3013
+ ds .BuildOverviews ("bilinear" , [2 ])
3014
+ del ds
3015
+
3016
+ ds = gdal .Open (tmpfilename )
3017
+
3018
+ # Check that we have non-zero data when mask = 255
3019
+ assert ds .GetRasterBand (1 ).GetOverview (0 ).ReadRaster (0 , 5270 , 1 , 1 ) == b"\x7F "
3020
+ assert ds .GetRasterBand (2 ).GetOverview (0 ).ReadRaster (0 , 5270 , 1 , 1 ) == b"\x7F "
3021
+ assert (
3022
+ ds .GetRasterBand (1 ).GetMaskBand ().GetOverview (0 ).ReadRaster (0 , 5270 , 1 , 1 )
3023
+ == b"\xFF "
3024
+ )
3025
+
3026
+ # Check that we have zero data when mask = 0
3027
+ assert ds .GetRasterBand (1 ).GetOverview (0 ).ReadRaster (0 , 5271 , 1 , 1 ) == b"\x00 "
3028
+ assert ds .GetRasterBand (2 ).GetOverview (0 ).ReadRaster (0 , 5271 , 1 , 1 ) == b"\x00 "
3029
+ assert (
3030
+ ds .GetRasterBand (1 ).GetMaskBand ().GetOverview (0 ).ReadRaster (0 , 5271 , 1 , 1 )
3031
+ == b"\x00 "
3032
+ )
0 commit comments