更改UIImage中某些特定像素的颜色

时间:2014-12-04 05:15:17

标签: ios iphone uiimage pixel

我有一个简单的UIImageView,带有一些人物形象。现在我想根据它们的位置或一些帧值来改变某些像素的颜色。如何做到这一点?

任何帮助......

1 个答案:

答案 0 :(得分:1)

对于长期实施,您应该看一下核心图像框架tutorial。 对于一次性案例,您可以参考iPhone : How to change color of particular pixel of a UIImage?处现有的答案 我找到了很好的非ARC解决方案,可以在整个帧中改变图片颜色,但是你可以尝试将它应用于某个像素:

- (void) grayscale:(UIImage*) image {
    CGContextRef ctx; 
    CGImageRef imageRef = [image CGImage];
    NSUInteger width = CGImageGetWidth(imageRef);
    NSUInteger height = CGImageGetHeight(imageRef);
    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
    unsigned char *rawData = malloc(height * width * 4);
    NSUInteger bytesPerPixel = 4;
    NSUInteger bytesPerRow = bytesPerPixel * width;
    NSUInteger bitsPerComponent = 8;
    CGContextRef context = CGBitmapContextCreate(rawData, width, height,
                                                 bitsPerComponent, bytesPerRow, colorSpace,
                                                 kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
    CGColorSpaceRelease(colorSpace);

    CGContextDrawImage(context, CGRectMake(0, 0, width, height), imageRef);
    CGContextRelease(context);

    // Now your rawData contains the image data in the RGBA8888 pixel format.
    int byteIndex = (bytesPerRow * 0) + 0 * bytesPerPixel;
    for (int ii = 0 ; ii < width * height ; ++ii)
    {
       // Get color values to construct a UIColor
          CGFloat red   = (rawData[byteIndex]     * 1.0) / 255.0;
        CGFloat green = (rawData[byteIndex + 1] * 1.0) / 255.0;
        CGFloat blue  = (rawData[byteIndex + 2] * 1.0) / 255.0;
        CGFloat alpha = (rawData[byteIndex + 3] * 1.0) / 255.0;

        rawData[byteIndex] = (char) (red);
        rawData[byteIndex+1] = (char) (green);
        rawData[byteIndex+2] = (char) (blue);

        byteIndex += 4;
    }

    ctx = CGBitmapContextCreate(rawData,  
                                CGImageGetWidth( imageRef ),  
                                CGImageGetHeight( imageRef ),  
                                8,  
                                CGImageGetBytesPerRow( imageRef ),  
                                CGImageGetColorSpace( imageRef ),  
                                kCGImageAlphaPremultipliedLast ); 

    imageRef = CGBitmapContextCreateImage (ctx);  
    UIImage* rawImage = [UIImage imageWithCGImage:imageRef];  

    CGContextRelease(ctx);  

    self.workingImage = rawImage;  
    [self.imageView setImage:self.workingImage];

    free(rawData);

}

来源:http://brandontreb.com/image-manipulation-retrieving-and-updating-pixel-values-for-a-uiimage

相关问题