例如,在iOS工具栏中,您可以拖动自己的.png(不透明的黑色和透明),并自动添加iOS的蓝色光泽。
但是,我想知道如何自己执行此操作,但是仅使用纯色即可。
例如,如果您有此图像:
您要怎么做才能使整个实心,粉红色,蓝色或灰色?我想通过用代码着色来减少我保存在应用程序中的.png版本的数量。
谢谢!
最佳答案
这应该为您做到:
- (UIImage *)colorImage:(UIImage *)origImage withColor:(UIColor *)color
{
UIGraphicsBeginImageContextWithOptions(origImage.size, YES, 0);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [color CGColor]);
CGContextFillRect(context, (CGRect){ {0,0}, origImage.size} );
CGAffineTransform flipVertical = CGAffineTransformMake(1, 0, 0, -1, 0, origImage.size.height);
CGContextConcatCTM(context, flipVertical);
CGContextDrawImage(context, (CGRect){ pt, origImage.size }, [origImage CGImage]);
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}