0
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

"

4

1 回答 1

0

已解决:通过 CGImage 而不是 image

于 2012-05-25T05:15:09.177 回答