我可以知道CGPoint
内部是否包含CGImageRef
吗?
还是我应该将CGImageRef
转换为其他格式?
更新
maskcontext = CGBitmapContextCreate(currentM, w,
h,
bitsPerComponent, bytesPerRow, colorSpace,
kCGImageAlphaNone);
maskImage = CGBitmapContextCreateImage(maskcontext);
其中
currentM
是unsigned char
,maskcontext
是CGContextRef
而maskImage
是CGImageRef
,我想知道它的rect
。 最佳答案
您能得到图像的框架吗?然后,您可以执行以下操作:
CGRectContainsPoint ( CGRect rect, CGPoint point )
查看该点是否在该框架内。