【问题标题】:Convert bitmap to PNG or JPG using Objective C使用 Objective C 将位图转换为 PNG 或 JPG
【发布时间】:2010-12-16 23:25:32
【问题描述】:

假设我有,任何人都知道如何使用 Objective C 将位图转换为 PNG 或 JPG

CGImageRef imageRef;

【问题讨论】:

标签: objective-c png bitmap


【解决方案1】:
UIImage *myImage = [UIImage imageWithCGImage:imageRef];
NSData *pngData = UIImagePNGRepresentation(myImage);
NSData *jpgData = UIImageJPEGRepresentation(myImage);

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2012-03-21
    • 2012-06-01
    • 2012-09-15
    • 2012-04-09
    • 2011-06-09
    • 2014-11-02
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多