我正在尝试使用Core Graphics的逐像素图像过滤器(使用CFData将CGImage分解为无符号整数)
但是,当我尝试使用已处理的数据创建图像时,生成的图像会出现明显不同的颜色。
我注释掉了整个循环,我实际上改变了像素的rgb值,也没有任何变化。
当我初始化我在过滤器中使用的UIImage时;我使用drawInRect和UIGraphicsBeginContext()进行调整大小;在从相机拍摄的图像上。
当我移除调整大小步骤并直接从相机设置我的图像时;过滤器似乎工作得很好。这是我初始化我正在使用的图像的代码(来自didFinishPickingImage内部)
self.editingImage
是UIImageView,self.editingUIImage
是UIImage
-(void)imagePickerController:(UIImagePickerController *)picker
didFinishPickingImage : (UIImage *)image
editingInfo:(NSDictionary *)editingInfo
{
self.didAskForImage = YES;
UIGraphicsBeginImageContext(self.editingImage.frame.size);
float prop = image.size.width / image.size.height;
float left, top, width, height;
if(prop < 1){
height = self.editingImage.frame.size.height;
width = (height / image.size.height) * image.size.width;
left = (self.editingImage.frame.size.width - width)/2;
top = 0;
}else{
width = self.editingImage.frame.size.width;
height = (width / image.size.width) * image.size.height;
top = (self.editingImage.frame.size.height - height)/2;
left = 0;
}
[image drawInRect:CGRectMake(left, top, width, height)];
self.editingUIImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
self.editingImage.image = self.editingUIImage;
[self.contrastSlider addTarget:self action:@selector(doImageFilter:) forControlEvents:UIControlEventValueChanged];
[self.brightnessSlider addTarget:self action:@selector(doImageFilter:) forControlEvents:UIControlEventValueChanged];
[picker dismissModalViewControllerAnimated:YES];
picker = nil;
}
按照我需要的方式调整图像大小到位置;
这是图像过滤功能,我已经把实际的循环内容拿出去,因为它们无关紧要。
- (void) doImageFilter:(id)sender{
CGImageRef src = self.editingUIImage.CGImage;
CFDataRef dta;
dta = CGDataProviderCopyData(CGImageGetDataProvider(src));
UInt8 *pixData = (UInt8 *) CFDataGetBytePtr(dta);
int dtaLen = CFDataGetLength(dta);
for (int i = 0; i < dtaLen; i += 3) {
//the loop
}
CGContextRef ctx;
ctx = CGBitmapContextCreate(pixData, CGImageGetWidth(src), CGImageGetHeight(src), 8, CGImageGetBytesPerRow(src), CGImageGetColorSpace(src), kCGImageAlphaPremultipliedLast);
CGImageRef newCG = CGBitmapContextCreateImage(ctx);
UIImage *new = [UIImage imageWithCGImage:newCG];
CGContextRelease(ctx);
CFRelease(dta);
CGImageRelease(newCG);
self.editingImage.image = new;
}
图像最初看起来像这样
然后做doImageFilter ......
如前所述,只有当我使用上面显示的resize方法时才会发生这种情况。
真的难倒这个,一直在研究它......任何帮助都非常感激!
干杯
更新:我检查了所有图像对象的颜色空间,它们都是kCGColorSpaceDeviceRGB。对这一个人感到非常难过,当我将图像分解为无符号整数时,我有点出错了,但我不确定是什么......任何人?
答案 0 :(得分:1)
您的问题出在最后一行:
ctx = CGBitmapContextCreate(pixData,
CGImageGetWidth(src),
CGImageGetHeight(src),
8,
CGImageGetBytesPerRow(src),
CGImageGetColorSpace(src),
kCGImageAlphaPremultipliedLast);
您正在假设源图像数据的alpha和组件排序,这显然是不正确的。您应该通过CGImageGetBitmapInfo(src)
从源图像中获取该内容。
为了避免像这样的问题,如果你开始使用任意CGImage并且想要直接操作位图的字节,最好以你自己指定的格式制作CGBitmapContext
(不直接从源图像中获取)。然后,将源图像绘制到位图上下文中;如有必要,CG会将图像的数据转换为位图上下文的格式。然后从位图上下文中获取数据并对其进行操作。