我可以知道 aCGPoint
是否在 a 内CGImageRef
吗?或者我应该转换成CGImageRef
其他格式?
更新
maskcontext = CGBitmapContextCreate(currentM, w,
h,
bitsPerComponent, bytesPerRow, colorSpace,
kCGImageAlphaNone);
maskImage = CGBitmapContextCreateImage(maskcontext);
哪里currentM
是一个unsigned char
,maskcontext
是一个CGContextRef
,maskImage
是一个CGImageRef
,我想知道它的rect
。