0

如何在位图上下文中迭代每个像素?我发现了一些似乎试图这样做的来源,但它存在某种缺陷。有人可以告诉我如何修复此代码,以便我可以迭代每个像素的 RGBA 吗?

-(UIImage*)modifyPixels:(UIImage*)originalImage
{

NSData* pixelData = (NSData*)CGDataProviderCopyData(CGImageGetDataProvider(originalImage.CGImage));
void* pixelBytes = [pixelData bytes];

// Take away the red pixel, assuming 32-bit RGBA
for(int i = 0; i < [pixelData length]; i += 4) {

      bytes[i] = 0; // red
      bytes[i+1] = bytes[i+1]; // green
      bytes[i+2] = bytes[i+2]; // blue
      bytes[i+3] = bytes[i+3]; // alpha
    }

    NSData* newPixelData = [NSData dataWithBytes:pixelBytes length:[pixelData length]];
    UIImage* newImage = [UIImage imageWithData:newPixelData]; 

    return newImage; 

}

4

1 回答 1

2

使用 CGBitmapContextCreate,为数据提供一个缓冲区,然后您的像素将在其中。
你可以检查这个链接

于 2009-08-29T11:50:41.747 回答