编辑:
不幸的是,cocotron不支持CGImage和representationUsingType:我需要能够将我的应用程序定位到PC版本,有人能建议第三种方法来完成这项任务吗?
然后使用representationUsingType:propertIEs:将其作为PNG输出.一个简单的例子:
NSBitmAPImageRep *imageRep = [[NSBitmAPImageRep alloc] initWithBitmapDataPlanes:imageBuffer pixelsWIDe:imageWIDth pixelsHigh:imageHeight bitsPerSample:8 samplesPerPixel:4 hasAlpha:YES isPlanar:NO colorSpacename:NSDeviceRGBcolorSpace bitmapformat:NSAlphaFirstBitmapformat bytesPerRow:imageWIDth * 4 bitsPerPixel:32];NSData *pngData = [imageRep representationUsingType:NSPNGfileType propertIEs:propertyDictionary];
如果你不能使用这些Cocoa方法,请查看libpng
.
以上是内存溢出为你收集整理的将32位RGBA缓冲区保存到.png文件中(Cocoa OSX)全部内容,希望文章能够帮你解决将32位RGBA缓冲区保存到.png文件中(Cocoa OSX)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)