diff --git a/ChangeLog b/ChangeLog index 8bec4e91..2b6ad980 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ - fix vips7 webp load [barryspearce] - fix out of bounds exif read in heifload - fix out of bounds read in tiffload +- fix tiffsave region shrink mode [imgifty] 6/9/20 started 8.10.2 - update magicksave/load profile handling [kelilevi] diff --git a/libvips/foreign/vips2tiff.c b/libvips/foreign/vips2tiff.c index a4331b77..1ea73895 100644 --- a/libvips/foreign/vips2tiff.c +++ b/libvips/foreign/vips2tiff.c @@ -1629,7 +1629,8 @@ layer_strip_shrink( Layer *layer ) if( vips_rect_isempty( &target ) ) break; - (void) vips_region_shrink( from, to, &target ); + (void) vips_region_shrink_method( from, to, &target, + layer->wtiff->region_shrink ); below->write_y += target.height;