我正在尝试开发一个小应用程序。在其中,我需要检测UIView中像素的颜色。我有一个CGPoint定义我需要的像素。使用CoreAnimation更改UIView的颜色。
我知道有一些复杂的方法可以从UIImages中提取颜色信息。但是我找不到UIViews的解决方案。
在伪代码中我正在寻找像
这样的东西pixel = [view getPixelAtPoint:myPoint];
UIColor *mycolor = [pixel getColor];
非常感谢任何输入。
答案 0 :(得分:76)
这是更有效的解决方案:
// UIView+ColorOfPoint.h
@interface UIView (ColorOfPoint)
- (UIColor *) colorOfPoint:(CGPoint)point;
@end
// UIView+ColorOfPoint.m
#import "UIView+ColorOfPoint.h"
#import <QuartzCore/QuartzCore.h>
@implementation UIView (ColorOfPoint)
- (UIColor *) colorOfPoint:(CGPoint)point
{
unsigned char pixel[4] = {0};
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
CGContextRef context = CGBitmapContextCreate(pixel, 1, 1, 8, 4, colorSpace, kCGBitmapAlphaInfoMask & kCGImageAlphaPremultipliedLast);
CGContextTranslateCTM(context, -point.x, -point.y);
[self.layer renderInContext:context];
CGContextRelease(context);
CGColorSpaceRelease(colorSpace);
//NSLog(@"pixel: %d %d %d %d", pixel[0], pixel[1], pixel[2], pixel[3]);
UIColor *color = [UIColor colorWithRed:pixel[0]/255.0 green:pixel[1]/255.0 blue:pixel[2]/255.0 alpha:pixel[3]/255.0];
return color;
}
@end
链接到文件:https://github.com/ivanzoid/ikit/tree/master/UIView+ColorOfPoint
答案 1 :(得分:22)
ivanzoid 的答案的快速版本
Swift 3
extension CALayer {
func colorOfPoint(point:CGPoint) -> CGColor {
var pixel: [CUnsignedChar] = [0, 0, 0, 0]
let colorSpace = CGColorSpaceCreateDeviceRGB()
let bitmapInfo = CGBitmapInfo(rawValue: CGImageAlphaInfo.premultipliedLast.rawValue)
let context = CGContext(data: &pixel, width: 1, height: 1, bitsPerComponent: 8, bytesPerRow: 4, space: colorSpace, bitmapInfo: bitmapInfo.rawValue)
context!.translateBy(x: -point.x, y: -point.y)
self.render(in: context!)
let red: CGFloat = CGFloat(pixel[0]) / 255.0
let green: CGFloat = CGFloat(pixel[1]) / 255.0
let blue: CGFloat = CGFloat(pixel[2]) / 255.0
let alpha: CGFloat = CGFloat(pixel[3]) / 255.0
let color = UIColor(red:red, green: green, blue:blue, alpha:alpha)
return color.cgColor
}
}
Swift 2
extension CALayer {
func colorOfPoint(point:CGPoint)->CGColorRef
{
var pixel:[CUnsignedChar] = [0,0,0,0]
let colorSpace = CGColorSpaceCreateDeviceRGB()
let bitmapInfo = CGBitmapInfo(rawValue: CGImageAlphaInfo.PremultipliedLast.rawValue)
let context = CGBitmapContextCreate(&pixel, 1, 1, 8, 4, colorSpace, bitmapInfo.rawValue)
CGContextTranslateCTM(context, -point.x, -point.y)
self.renderInContext(context!)
let red:CGFloat = CGFloat(pixel[0])/255.0
let green:CGFloat = CGFloat(pixel[1])/255.0
let blue:CGFloat = CGFloat(pixel[2])/255.0
let alpha:CGFloat = CGFloat(pixel[3])/255.0
let color = UIColor(red:red, green: green, blue:blue, alpha:alpha)
return color.CGColor
}
}
基于潜在的CALayer
,但可以轻松翻译回UIView
。
答案 2 :(得分:8)
这是非常可怕和缓慢的。基本上你用你分配的后备存储创建一个位图上下文,这样你就可以读取内存,然后在上下文中渲染视图层并读取ram中的相应点。
如果您知道如何为图像执行此操作,则可以执行以下操作:
- (UIImage *)imageForView:(UIView *)view {
UIGraphicsBeginImageContext(view.frame.size);
[view.layer renderInContext: UIGraphicsGetCurrentContext()];
UIImage *retval = UIGraphicsGetImageFromCurrentImageContext(void);
UIGraphicsEndImageContext();
return retval;
}
然后您将获得一个可以获取像素数据的图像。我确信你处理图像的机制无论如何都要将它们渲染成一个上下文,所以你可以将它与它合并并分解实际的图像创建。因此,如果您采取这种方法并删除加载图像的位并将其替换为上下文渲染:
[view.layer renderInContext: UIGraphicsGetCurrentContext()];
你应该好。
答案 3 :(得分:2)
修正了一些小错误
- (UIImage *)imageForView:(UIView *)view {
UIGraphicsBeginImageContext(view.frame.size);
[view.layer renderInContext: UIGraphicsGetCurrentContext()];
UIImage *retval = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return retval;
}
另外,添加
#import <QuartzCore/QuartzCore.h>
到您的文件以避免发出警告信息。
将代码与找到的代码here结合使用可以完美无缺。
答案 4 :(得分:0)
快捷键4 和 4.2 。在运行iOS 12.1的XCode 10,iOS 12,模拟器和iPhone 6+上进行了测试。
此代码可以正常工作。
extension UIView {
func colorOfPoint(point: CGPoint) -> UIColor {
let colorSpace: CGColorSpace = CGColorSpaceCreateDeviceRGB()
let bitmapInfo = CGBitmapInfo(rawValue: CGImageAlphaInfo.premultipliedLast.rawValue)
var pixelData: [UInt8] = [0, 0, 0, 0]
let context = CGContext(data: &pixelData, width: 1, height: 1, bitsPerComponent: 8, bytesPerRow: 4, space: colorSpace, bitmapInfo: bitmapInfo.rawValue)
context!.translateBy(x: -point.x, y: -point.y)
self.layer.render(in: context!)
let red: CGFloat = CGFloat(pixelData[0]) / CGFloat(255.0)
let green: CGFloat = CGFloat(pixelData[1]) / CGFloat(255.0)
let blue: CGFloat = CGFloat(pixelData[2]) / CGFloat(255.0)
let alpha: CGFloat = CGFloat(pixelData[3]) / CGFloat(255.0)
let color: UIColor = UIColor(red: red, green: green, blue: blue, alpha: alpha)
return color
}
}