检测图像ios上的黑线

时间:2013-10-22 13:21:03

标签: ios ipad cocoa-touch core-graphics

我有一个.PNG文件。该图片有白色背景,只有黑线。

我想在用户触摸图像时检测到黑线。在此图像中,我如何通过触摸检测花朵

e.g。

enter image description here

这怎么可能?

请帮帮我......

2 个答案:

答案 0 :(得分:2)

创建UIView类的类别。将以下功能添加到其中。

@implementation UIView (ColorOfPoint)

- (UIColor *) colorOfPoint:(CGPoint)point
{
      unsigned char pixel[4] = {0};
      CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
      CGContextRef context = CGBitmapContextCreate(pixel, 1, 1, 8, 4, colorSpace, kCGBitmapFloatComponents);
      CGContextTranslateCTM(context, -point.x, -point.y);
      [self.layer renderInContext:context];
      CGContextRelease(context);
      CGColorSpaceRelease(colorSpace);
      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

通过以下电话使用它:

  UIColor *col = [YOUR_IMAGE_VIEW colorOfPoint:CGPOINT_WHERE_USER_TOUCHED];

答案 1 :(得分:1)

好的解决方案只有这个课程会帮助UIView+ColorOfPoint