我正在寻找一种方法来优化我的图像,将其颜色从 32 位转换为 16 位,而不仅仅是调整它的大小。所以这就是我正在做的事情:
- (UIImage *)optimizeImage:(UIImage *)image
{
float newWidth = image.size.width;
float newHeight = image.size.height;
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
CGContextRef context = CGBitmapContextCreate(NULL, newWidth, newHeight, 5, newWidth * 4,
colorSpace, kCGImageAlphaNone | kCGBitmapByteOrder32Big);
CGColorSpaceRelease(colorSpace);
CGInterpolationQuality quality = kCGInterpolationHigh;
CGContextSetInterpolationQuality(context, quality);
CGImageRef srcImage = CGImageRetain(image.CGImage);
CGContextDrawImage(context, CGRectMake(0, 0, newWidth, newHeight),
srcImage);
CGImageRelease(srcImage);
CGImageRef dst = CGBitmapContextCreateImage(context);
CGContextRelease(context);
UIImage *result = [UIImage imageWithCGImage:dst];
CGImageRelease(dst);
UIGraphicsEndImageContext();
return result;
}
这段代码的问题是,当我运行它时,我得到了这个错误:
CGBitmapContextCreate:不支持的参数组合:5个整数位/分量;16 位/像素;三分量色彩空间;kCGImageAlphaNone; 10392 字节/行。
所以我的问题是:支持的组合是CGBitmapContextCreate
什么?bitmapInfo
在这种情况下我应该为参数选择什么?请建议。