In my application I need to resize and crop some images, stored locally and online. I am using Trevor Harmon's tutorial which implements UIImage+Resize
.
On my iPhone 4(iOS 4.3.1) everything works OK, I have no problems. But on my iPhone 3G (iOS 3.2) the resizing and crop methods are not working for any picture (the locally stored ones are PNGs). This is the console output:
Tue Apr 5 02:34:44 Andreis-MacBook-Pro.local Puzzle[12453] <Error>: CGBitmapContextCreate: unsupported parameter combination: 8 integer bits/component; 32 bits/pixel; 3-component color space; kCGImageAlphaLast; 288 bytes/row.
Tue Apr 5 02:34:44 Andreis-MacBook-Pro.local Puzzle[12453] <Error>: CGBitmapContextCreate: unsupported parameter combination: 8 integer bits/component; 32 bits/pixel; 3-component color space; kCGImageAlphaLast; 288 bytes/row.
Tue Apr 5 02:34:44 Andreis-MacBook-Pro.local Puzzle[12453] <Error>: CGBitmapContextCreate: unsupported parameter combination: 8 integer bits/component; 32 bits/pixel; 3-component color space; kCGImageAlphaLast; 288 bytes/row.
Tue Apr 5 02:34:44 Andreis-MacBook-Pro.local Puzzle[12453] <Error>: CGBitmapContextCreate: unsupported parameter combination: 8 integer bits/component; 32 bits/pixel; 3-component color space; kCGImageAlphaLast; 288 bytes/row.
This is the crop method
- (UIImage *)croppedImage:(CGRect)bounds
{
CGImageRef imageRef = CGImageCreateWithImageInRect([self CGImage], bounds);
UIImage *croppedImage = [UIImage imageWithCGImage:imageRef];
CGImageRelease(imageRef);
return croppedImage;
}
The resize method is this:
- (UIImage *)resizedImage:(CGSize)newSize
transform:(CGAffineTransform)transform
drawTransposed:(BOOL)transpose
interpolationQuality:(CGInterpolationQuality)quality
{
CGRect newRect = CGRectIntegral(CGRectMake(0, 0, newSize.width, newSize.height));
CGRect transposedRect = CGRectMake(0, 0, newRect.size.height, newRect.size.width);
CGImageRef imageRef = self.CGImage;
CGContextRef bitmap = CGBitmapContextCreate(NULL,
newRect.size.width,
newRect.size.height,
CGImageGetBitsPerComponent(imageRef),
0,
CGImageGetColorSpace(imageRef),
CGImageGetBitmapInfo(imageRef));
if(bitmap == nil)
return nil;
CGContextConcatCTM(bitmap, transform);
CGContextSetInterpolationQuality(bitmap, quality);
CGContextDrawImage(bitmap, transpose ? transposedRect : newRect, imageRef);
CGImageRef newImageRef = CGBitmapContextCreateImage(bitmap);
UIImage *newImage = [UIImage imageWithCGImage:newImageRef];
CGContextRelease(bitmap);
CGImageRelease(newImageRef);
return newImage;
}
Can someone explain to me way I have this issue?
Thank you, Andrei
I had the same problem with iOS 5 simulator and the answers above didn't resolve my issue: images were not loaded and the console still reported the same errors.
I am using the very popular categories found here.
On this blog people are having the same issue(s). Matt's answer from November 22, 2011 helped me.
Cheers!
Replying here since I had the exact same pixel format when I got this error. I hope this answer helps someone.
The reason it was failing, in my case, was that
kCGImageAlphaLast
isn't a permitted value anymore on iOS 8, although it works well on iOS 7. The 32 pbb, 8 bpc combination only allowskCGImageAlphaNoneSkip*
andkCGImageAlphaPremultiplied*
for the Alpha Info. Apparently this was a problem always, but wasn't enforced before iOS 8. Here's my solution:In my case the failing piece of code looked like this, where imageRef is a CGImageRef of a PNG loaded from the app bundle:
Sources: https://stackoverflow.com/a/19345325/3099609
https://developer.apple.com/library/mac/DOCUMENTATION/GraphicsImaging/Conceptual/drawingwithquartz2d/dq_context/dq_context.html#//apple_ref/doc/uid/TP30001066-CH203-BCIBHHBB
Ok this may or may not help you (and i appreciate that this is an old post)
I was getting a similar problem because the width parameter (in your case newRect.size.width) had a decimal fraction component (eg 100.001 instead of 100.0). i typecast it to an integer and back, truncating the decimals component, and the problem went away. i am guessing there is a test to see that the number of bits per component x pixels etc adds up, and it can't deal with fractional pixels/points. you are welcome to use this method if it helps.
I was seeing this issue in the simulator when switching from 5.1 to 6.1 for testing. Closing the simulator and opening it again seems to have removed the error.
I figured out it's a problem with the color space. Just replace CGImageGetColorSpace(imageRef) with CGColorSpaceCreateDeviceRGB() . This works for me when trying to save image I got from AVCaptureSession. And don't forget to release it!