UIImage+Resize 类别扩展错误和警告 iOS 7

Posted

技术标签:

【中文标题】UIImage+Resize 类别扩展错误和警告 iOS 7【英文标题】:UIImage+Resize Category extension Errors and Warnings iOS 7 【发布时间】:2014-07-21 18:00:57 【问题描述】:

在找到here 的 UIImage+Resize 类别扩展中使用 UIImage 类的类别扩展时,我遇到了一些令人担忧的错误。我正在使用 Xcode 5.1.1。

问题:有没有更好的方法在 Quartz2D 或其他框架中使用其他东西来解决这些问题并在未来证明 UIImage 的类别扩展?

这是控制台输出:

CGBitmapContextCreate不支持的参数 组合:8个整数位/分量; 32 位/像素;三组分 色彩空间;无法识别; 1200 字节/行。 :CGContextConcatCTM:上下文 0x0 无效。这是一个 严重错误。此应用程序或它使用的库正在使用 无效的上下文,从而有助于整体 降低系统稳定性和可靠性。本通知为 礼貌:请解决这个问题。这将成为一个致命的错误 即将更新。 :CGContextSetInterpolationQuality:上下文无效 0x0。这是一个严重的错误。这个应用程序,或者它使用的一个库, 正在使用无效的上下文,从而导致 系统稳定性和可靠性的整体退化。这 通知是一种礼貌:请解决此问题。它将成为一个 即将更新的致命错误。 CGContextDrawImage:无效的上下文 0x0。这是一个严重的错误。此应用程序或其使用的库正在使用无效的上下文 从而导致系统整体退化 稳定性和可靠性。此通知是一种礼貌:请解决此问题 问题。这将成为即将到来的更新中的致命错误。 :CGBitmapContextCreateImage:无效的上下文 0x0。这 是一个严重的错误。此应用程序或其使用的库正在使用 一个无效的上下文,从而有助于整体 降低系统稳定性和可靠性。此通知是一个 礼貌:请解决这个问题。这将成为一个致命的错误 即将更新。

我正在抓取imageView图片并调用方法:

if (image != nil) 
            //present our image in the image view
            _imageView.image = image;

            //make half size thumbnail.
            CGSize imageSize = CGSizeMake(300,300);

            image = [image resizedImage:imageSize interpolationQuality:kCGInterpolationHigh];

这是包含所有问题的类别扩展私有助手方法:

// Returns a copy of the image that has been transformed using the given affine transform and scaled to the new size
// The new image's orientation will be UIImageOrientationUp, regardless of the current image's orientation
// If the new size is not integral, it will be rounded up
- (UIImage *)resizedImage:(CGSize)newSize
                transform:(CGAffineTransform)transform
           drawTransposed:(BOOL)transpose
     interpolationQuality:(CGInterpolationQuality)quality 
    CGFloat scale = MAX(1.0f, self.scale);
    CGRect newRect = CGRectIntegral(CGRectMake(0, 0, newSize.width*scale, newSize.height*scale));
    CGRect transposedRect = CGRectMake(0, 0, newRect.size.height, newRect.size.width);
    CGImageRef imageRef = self.CGImage;

    // Fix for a colorspace / transparency issue that affects some types of
    // images. See here: http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/comment-page-2/#comment-39951

    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
    CGContextRef bitmap = CGBitmapContextCreate(
                                                NULL,
                                                newRect.size.width,
                                                newRect.size.height,
                                                8, /* bits per channel */
                                                (newRect.size.width * 4), /* 4 channels per pixel * numPixels/row */
                                                colorSpace,
                                                kCGBitmapByteOrderDefault
                                                );
    CGColorSpaceRelease(colorSpace);

    // Rotate and/or flip the image if required by its orientation
    CGContextConcatCTM(bitmap, transform);

    // Set the quality level to use when rescaling
    CGContextSetInterpolationQuality(bitmap, quality);

    // Draw into the context; this scales the image
    CGContextDrawImage(bitmap, transpose ? transposedRect : newRect, imageRef);

    // Get the resized image from the context and a UIImage
    CGImageRef newImageRef = CGBitmapContextCreateImage(bitmap);
    UIImage *newImage = [UIImage imageWithCGImage:newImageRef scale:self.scale orientation:UIImageOrientationUp];

    // Clean up
    CGContextRelease(bitmap);
    CGImageRelease(newImageRef);

    return newImage;

【问题讨论】:

我在 ios8 中收到同样的警告,而且在 IOS8 中返回的 uiimage 为 nil,所以我看不到调整大小的图像...你能解决吗?? mmmm 就我而言。发现无法创建上下文:CGBitmapContextCreate: unsupported parameter combination: 8 integer bits/component; 32 位/像素;三分量色彩空间; kCGImageAlphaLast; 448 字节/行。 :( 嘿@EvaMadrazo 看看我下面的答案。我希望这可以帮助你!和平。 【参考方案1】:

在对 Quartz 的 CGBitmapContextCreate 进行了一番摆弄之后,我能够解决这个问题。

那里有一些“愚蠢的人”可以解释为什么这样做有效,但从 iOS7 开始,现在是 iOS8(Xcode 6.0),这段代码对我有用。下面是我修改的代码:

CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
    CGContextRef bitmap = CGBitmapContextCreate(
                                                NULL,
                                                newRect.size.width,
                                                newRect.size.height,
                                                CGImageGetBitsPerComponent(imageRef), /* bits per channel */
                                                (newRect.size.width * 4), /* 4 channels per pixel * numPixels/row */
                                                colorSpace,
                                                CGImageGetBitmapInfo(imageRef)/*SOLVED: instead of a constant here add this CGImageGetBitmapInfo(imageRef)*/
                                                );
    CGColorSpaceRelease(colorSpace);

我不得不改变一些东西,比如我使用 CGImageGetBitsPerComponent(imageRef) 的 (size_t bitsPerComponent) 部分的硬编码,因为我想要它成为 imageRef 输入的每个组件的位,而不仅仅是 8 位。下一点(双关语)是解决正在吹大块的古怪“kCGBitmapByteOrderDefault”,但此时我发现动态很有用,所以我使用了CGImageGetBitmapInfoimageRef),它返回一个常量(返回位图图像的位图信息),指定位图数据的类型以及 alpha 通道是否在数据中。

我希望这对某人有所帮助,我欢迎任何人帮助更好地解释这一点,因为我知道这里有更好的人来做这件事。干杯!

【讨论】:

首先,感谢您的回答。这很奇怪,但是您的代码是我首先测试的原始代码,它给了我一个空上下文和注释错误。这适用于 IOS8 Xcode6 ??。我得到的错误是: : CGBitmapContextCreate: unsupported parameter combination: 8 integer bits/component; 32 位/像素;三分量色彩空间; kCGImageAlphaLast; 436 字节/行。 就我而言。更改 CGImageGetBitmapInfo(imageRef)-> kCGImageAlphaPremultipliedFirst 会变魔术(很神奇,因为我不明白为什么!:)) 我也是,但我很想找一个可以向我解释的人哈哈@tony.stack

以上是关于UIImage+Resize 类别扩展错误和警告 iOS 7的主要内容,如果未能解决你的问题,请参考以下文章

在 iPhone 中向 UIImage 添加类别

swift 的UIImage +色调+ Resize.swift

如何在swift中从UIImage获取图像扩展/格式

Xcode 8 Objective-C 类别警告

合并两个 UIImage 时收到内存警告

内存警告后释放 UIImage 时崩溃