Merge pull request #3831 from thoughtful-inc/master

Do not ignore blendMode in SDImageTintTransformer
This commit is contained in:
DreamPiggy
2025-08-29 15:52:38 +08:00
committed by GitHub
+1 -1
View File
@@ -309,7 +309,7 @@ NSString * _Nullable SDThumbnailedKeyForKey(NSString * _Nullable key, CGSize thu
if (!image) {
return nil;
}
return [image sd_tintedImageWithColor:self.tintColor];
return [image sd_tintedImageWithColor:self.tintColor blendMode:self.blendMode];
}
@end