在 UIImageView 上反转颜色

Posted

技术标签:

【中文标题】在 UIImageView 上反转颜色【英文标题】:Inverting colors on UIImageView 【发布时间】:2013-06-11 19:05:33 【问题描述】:

我试图,但问题是当我尝试反转颜色时,透明区域填充为白色:

只有白色区域应该反转为黑色,但结果是:

这是我的代码:

- (void)invertColorWithImage:(UIImageView*)image 


    UIGraphicsBeginImageContext(image.image.size);
    CGContextSetBlendMode(UIGraphicsGetCurrentContext(), kCGBlendModeCopy);
    [image.image drawInRect:CGRectMake(0, 0, image.image.size.width, image.image.size.height)];
    CGContextSetBlendMode(UIGraphicsGetCurrentContext(), kCGBlendModeDifference);
    CGContextSetFillColorWithColor(UIGraphicsGetCurrentContext(),[UIColor whiteColor].CGColor);    
    CGContextFillRect(UIGraphicsGetCurrentContext(), CGRectMake(0, 0, image.image.size.width, image.image.size.height));
    image.image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();


我念诵这条线以清除颜色,但没有任何改变:

CGContextSetFillColorWithColor(UIGraphicsGetCurrentContext(),[UIColor whiteColor].CGColor);    

【问题讨论】:

我希望代码没有问题,你能多解释一下...... 我觉得图片很清晰!透明区域用白色填充,这就是问题所在,@Spynet 【参考方案1】:

从阅读代码看来,这可能是罪魁祸首

CGContextSetFillColorWithColor(UIGraphicsGetCurrentContext(),[UIColor whiteColor].CGColor);    
CGContextFillRect(UIGraphicsGetCurrentContext(), CGRectMake(0, 0, image.image.size.width, image.image.size.height));

您将填充颜色设置为白色,然后在下一行表示填充整个图像。

我没有机会运行代码,但看起来很可能

【讨论】:

【参考方案2】:

我找到了这个方法并且效果很好: http://coffeeshopped.com/2010/09/iphone-how-to-dynamically-color-a-uiimage

【讨论】:

以上是关于在 UIImageView 上反转颜色的主要内容,如果未能解决你的问题,请参考以下文章

如何更改UIImage / UIImageView的单个像素的颜色

我可以更改 UIButton 上的色调颜色,但不能更改 UIImage

在 UIImageView 内的 UIImage 上缩放和居中

UIimage与UIimageView

性能:UIImage 与 UIView

将 UIImage 转换为 CGImage 以获取像素颜色