改变颜色空间和图像

时间:2012-05-22 19:20:20

标签: iphone objective-c ios core-graphics quartz-graphics

我正在根据基于DeviceGray色彩空间的图像创建遮罩。

基本上我想做的是将各种灰色(黑色旁边)像素更改为白色,并保留黑色像素。

所以我希望我的图像由黑白像素组成。

任何想法如何使用CoreGraphics实现这意味着什么?

请不要在循环中提供遍布像素的

1 个答案:

答案 0 :(得分:2)

像这样使用CGImageCreateWithMaskingColorsCGContextSetRGBFillColor

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讨论中提到。