UIImage转pixel buffer

来源:互联网 发布:最新mac装win10 编辑:程序博客网 时间:2024/04/29 20:12

CGImageRef inImage = image.CGImage;

CFDataRef bitmapData =CGDataProviderCopyData(CGImageGetDataProvider(inImage));

CFMutableDataRef m_DataRef = CFDataCreateMutableCopy(0,0, bitmapData);

UInt8 *data = (UInt8*)CFDataGetMutableBytePtr(m_DataRef);

0 0
原创粉丝点击