Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was developing a application that changes color image to gray image. However, some how the picture comes out wrong. I dont know what is wrong with the code. maybe the parameter that i put in is wrong please help.

 UIImage *c = [UIImage imageNamed:@"downRed.png"];
 CGImageRef cRef = CGImageRetain(c.CGImage);

 NSData* pixelData = (NSData*) CGDataProviderCopyData(CGImageGetDataProvider(cRef));

 size_t w = CGImageGetWidth(cRef);
 size_t h = CGImageGetHeight(cRef);

 unsigned char* pixelBytes = (unsigned char *)[pixelData bytes];

 unsigned char* greyPixelData = (unsigned char*) malloc(w*h);

 for (int y = 0; y < h; y++) {
 for(int x = 0; x < w; x++){

 int iter = 4*(w*y+x);
 int red = pixe lBytes[iter];
 int green = pixelBytes[iter+1];
 int blue = pixelBytes[iter+2];
 greyPixelData[w*y+x] = (unsigned char)(red*0.3 + green*0.59+ blue*0.11);
     int value = greyPixelData[w*y+x];

 }
 }

 CFDataRef imgData = CFDataCreate(NULL, greyPixelData, w*h);


 CGDataProviderRef imgDataProvider = CGDataProviderCreateWithCFData(imgData);


 size_t width = CGImageGetWidth(cRef);
 size_t height = CGImageGetHeight(cRef);
 size_t bitsPerComponent = 8;
 size_t bitsPerPixel = 8;
 size_t bytesPerRow = CGImageGetWidth(cRef);
 CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceGray();
 CGBitmapInfo info = kCGImageAlphaNone;
 CGFloat *decode = NULL;
 BOOL shouldInteroplate = NO;
 CGColorRenderingIntent intent = kCGRenderingIntentDefault;
  CGDataProviderRelease(imgDataProvider);

 CGImageRef throughCGImage = CGImageCreate(width, height, bitsPerComponent, bitsPerPixel, bytesPerRow, colorSpace, info, imgDataProvider, decode, shouldInteroplate, intent);


 UIImage* newImage = [UIImage imageWithCGImage:throughCGImage];

CGImageRelease(throughCGImage);
 newImageView.image = newImage;
share|improve this question
Here's a similar thread that might help you out: stackoverflow.com/questions/4030430/… – Rion Williams Jan 7 '11 at 16:43
what is the error that you are getting? also, please use the '{}' selection to format your code in the future. – KevinDTimm Jan 7 '11 at 16:50
Thank you for the link. However it did not help me ;( I do not get any error but the picture comes out weird. it looks staggarded. – Younduk Nam Jan 7 '11 at 19:22
note that you perform ` CGDataProviderRelease(imgDataProvider);` before using imgDataProvider – Or Arbel Jan 10 '12 at 15:49

1 Answer

Just use this:

- (UIImage *)convertImageToGrayScale:(UIImage *)image
{
  // Create image rectangle with current image width/height
  CGRect imageRect = CGRectMake(0, 0, image.size.width, image.size.height);

  // Grayscale color space
  CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceGray();

  // Create bitmap content with current image size and grayscale colorspace
  CGContextRef context = CGBitmapContextCreate(nil, image.size.width, image.size.height, 8, 0, colorSpace, kCGImageAlphaNone);

  // Draw image into current context, with specified rectangle
  // using previously defined context (with grayscale colorspace)
  CGContextDrawImage(context, imageRect, [image CGImage]);

  // Create bitmap image info from pixel data in current context
  CGImageRef imageRef = CGBitmapContextCreateImage(context);

  // Create a new UIImage object  
  UIImage *newImage = [UIImage imageWithCGImage:imageRef];

  // Release colorspace, context and bitmap information
  CGColorSpaceRelease(colorSpace);
  CGContextRelease(context);
  CFRelease(imageRef);

  // Return the new grayscale image
  return newImage;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.