1

我可以知道 aCGPoint是否在 a 内CGImageRef吗?或者我应该转换成CGImageRef其他格式?

更新

maskcontext = CGBitmapContextCreate(currentM, w, 
                                               h,
                                               bitsPerComponent, bytesPerRow, colorSpace,
                                               kCGImageAlphaNone);
maskImage = CGBitmapContextCreateImage(maskcontext);

哪里currentM是一个unsigned charmaskcontext是一个CGContextRefmaskImage是一个CGImageRef,我想知道它的rect

4

1 回答 1

2

你能得到你的图像的框架吗?然后你可以这样做:

CGRectContainsPoint ( CGRect rect, CGPoint point )

查看该点是否在该框架内。

于 2012-03-08T09:51:47.147 回答