首页 热点资讯 义务教育 高等教育 出国留学 考研考公
您的当前位置:首页正文

iOS中使用blend改变图片颜色

2024-12-20 来源:化拓教育网

UIImage+Tint.h


#import@interface UIImage (Tint)

- (UIImage *) imageWithTintColor:(UIColor *)tintColor;

- (UIImage *) imageWithGradientTintColor:(UIColor *)tintColor;

@end


UIImage+Tint.m


#import "UIImage+Tint.h"

@implementation UIImage (Tint)

- (UIImage *) imageWithTintColor:(UIColor *)tintColor

{

return [self imageWithTintColor:tintColor blendMode:kCGBlendModeDestinationIn];

}

- (UIImage *) imageWithGradientTintColor:(UIColor *)tintColor

{

return [self imageWithTintColor:tintColor blendMode:kCGBlendModeOverlay];

}

- (UIImage *) imageWithTintColor:(UIColor *)tintColor blendMode:(CGBlendMode)blendMode

{

//We want to keep alpha, set opaque to NO; Use 0.0f for scale to use the scale factor of the device’s main screen.

UIGraphicsBeginImageContextWithOptions(self.size, NO, 0.0f);

[tintColor setFill];

CGRect bounds = CGRectMake(0, 0, self.size.width, self.size.height);

UIRectFill(bounds);

//Draw the tinted image in context

[self drawInRect:bounds blendMode:blendMode alpha:1.0f];

if (blendMode != kCGBlendModeDestinationIn) {

[self drawInRect:bounds blendMode:kCGBlendModeDestinationIn alpha:1.0f];

}

UIImage *tintedImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

return tintedImage;

}

@end


使用方法:

UIImage *image = [[UIImage imageNamed:@"image"] imageWithGradientTintColor:[UIColor darkGrayColor]]; 

显示全文