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..