美文网首页
CGBitmapContextCreate返回nil

CGBitmapContextCreate返回nil

作者: 人莫予毒_dfc6 | 来源:发表于2019-03-18 21:03 被阅读0次

    CGContextRef ctx = CGBitmapContextCreate(

                                             outBuffer.data,

                                             outBuffer.width,

                                             outBuffer.height,

                                             bitsPerComponent,

                                             outBuffer.rowBytes,

                                             colorSpace,

                                             kCGImageAlphaNoneSkipLast);

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

相关文章

网友评论

      本文标题:CGBitmapContextCreate返回nil

      本文链接:https://www.haomeiwen.com/subject/cizmmqtx.html