我正在根据基于DeviceGray色彩空间的图像创建遮罩。
基本上我想做的是将各种灰色(黑色旁边)像素更改为白色,并保留黑色像素。
所以我希望我的图像由黑白像素组成。
任何想法如何使用CoreGraphics实现这意味着什么?
请不要在循环中提供遍布像素的
答案 0 :(得分:2)
像这样使用CGImageCreateWithMaskingColors
和CGContextSetRGBFillColor
:
CGImageRef myMaskedImage;
const CGFloat myMaskingColors[6] = { 0, 124, 0, 68, 0, 0 };
myColorMaskedImage = CGImageCreateWithMaskingColors (image,
myMaskingColors);
CGContextSetRGBFillColor (myContext, 0.6373,0.6373, 0, 1);
CGContextFillRect(context, rect);
CGContextDrawImage(context, rect, myColorMaskedImage);
顺便说一句,填充颜色在CGImageCreateWithMaskingColors讨论中提到。