将图像转换为 16 位彩色图像
Convert an image to a 16bit color image
我正在寻找一种优化图像的方法,方法是将其颜色从 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: unsupported parameter combination: 5 integer
bits/component; 16 bits/pixel; 3-component color space;
kCGImageAlphaNone; 10392 bytes/row.
所以我的问题是:CGBitmapContextCreate
支持的组合是什么?在这种情况下,我应该为 bitmapInfo
参数设置什么 select?请提出建议。
所以我在 Mac Developer Library 中找到了答案。支持的像素格式有一个 table,这就是我要找的:
RGB - 16 bpp, 5 bpc, kCGImageAlphaNoneSkipFirst
所以我更改了我的 bitmapInfo
并且上下文创建得很好。希望这对某人有用。
我正在寻找一种优化图像的方法,方法是将其颜色从 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: unsupported parameter combination: 5 integer bits/component; 16 bits/pixel; 3-component color space; kCGImageAlphaNone; 10392 bytes/row.
所以我的问题是:CGBitmapContextCreate
支持的组合是什么?在这种情况下,我应该为 bitmapInfo
参数设置什么 select?请提出建议。
所以我在 Mac Developer Library 中找到了答案。支持的像素格式有一个 table,这就是我要找的:
RGB - 16 bpp, 5 bpc, kCGImageAlphaNoneSkipFirst
所以我更改了我的 bitmapInfo
并且上下文创建得很好。希望这对某人有用。