Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using following code for masking of two UIImages:

- (UIImage*) maskImage:(UIImage *)maskImg forImage:(UIImage *)image {

CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
CGImageRef maskImageRef = [maskImg CGImage];

// create a bitmap graphics context the size of the image
CGContextRef mainViewContentContext = CGBitmapContextCreate (NULL, maskImg.size.width, maskImg.size.height, 8, 0, colorSpace, kCGImageAlphaPremultipliedLast);
if (mainViewContentContext==NULL)
    return NULL;
CGFloat ratio = 0;
ratio = maskImg.size.width/ image.size.width;
if(ratio * image.size.height < maskImg.size.height) {
    ratio = maskImg.size.height/ image.size.height;
} 
   CGRect rect1  = {{0, 0}, {maskImg.size.width, maskImg.size.height}};
CGRect rect2  = {{-((image.size.width*ratio)-maskImg.size.width)/2 , -((image.size.height*ratio)-maskImg.size.height)/2}, {image.size.width*ratio, image.size.height*ratio}};
    CGContextClipToMask(mainViewContentContext, rect1, maskImageRef);
CGContextDrawImage(mainViewContentContext, rect2, image.CGImage);

// Create CGImageRef of the main view bitmap content, and then
// release that bitmap context
CGImageRef newImage = CGBitmapContextCreateImage(mainViewContentContext);
CGContextRelease(mainViewContentContext);
CGColorSpaceRelease(colorSpace);
UIImage *theImage = [UIImage imageWithCGImage:newImage];
CGImageRelease(newImage);
// return the image
return theImage;
}

This code is working on iPad1 and iPad2 but for iPad3 (Retina display) for some images having large image size [twice the size of ipad2 images] it is crashing.

It is crashing on line->

        CGContextDrawImage(mainViewContentContext, rect2, image.CGImage);

If I am reducing size of the same image then it is not crashing please help, no idea how to solve this…

Thank you in advance..

share|improve this question
hi i was not able to reproduce your crash... – Spynet Oct 26 '12 at 4:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.