CGColorSpaceRef colorSpace = CGImageGetColorSpace([UIImage imageNamed:@"shirtWhite.jpeg"]);
CGContextRef context = CGBitmapContextCreate (nil,
width,
height,
CGImageGetBitsPerComponent(imageToTest.image),
CGImageGetBytesPerRow(imageToTest.image),
colorSpace,
CGImageGetAlphaInfo(imageToTest.image));
我在传递图像的每一行都收到警告。 警告是“警告:从不兼容的指针类型传递'CGImageGetColorSpace'的参数1
警告:从不兼容的指针类型传递'CGImageGetBitsPerComponent'的参数1
“
答案 0 :(得分:0)
解决:传递CGImage而不是图像