我可以知道CGPoint内部是否包含CGImageRef吗?
还是我应该将CGImageRef转换为其他格式?

更新

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

其中currentMunsigned charmaskcontextCGContextRefmaskImageCGImageRef,我想知道它的rect

最佳答案

您能得到图像的框架吗?然后,您可以执行以下操作:

CGRectContainsPoint ( CGRect rect, CGPoint point )

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

10-08 01:35