CGBitmapContextCreate返回nil

    CGContextRef ctx = CGBitmapContextCreate(

                                             outBuffer.data,

                                             outBuffer.width,

                                             outBuffer.height,

                                             bitsPerComponent,

                                             outBuffer.rowBytes,

                                             colorSpace,

                                             kCGImageAlphaNoneSkipLast);

可以试试把 outBuffer.rowBytes改为 outBuffer.width * 4或者把 colorSpace改为 CGImageGetColorSpace(img)。

你可能感兴趣的:(CGBitmapContextCreate返回nil)