Convert bitmap to PNG or JPG using Objective C

本小妞迷上赌 提交于 2019-12-22 09:51:34

问题


Anyone knows how to convert a bitmap to PNG or JPG using Objective C assuming I have

CGImageRef imageRef;


回答1:


UIImage *myImage = [UIImage imageWithCGImage:imageRef];
NSData *pngData = UIImagePNGRepresentation(myImage);
NSData *jpgData = UIImageJPEGRepresentation(myImage);


来源:https://stackoverflow.com/questions/1740691/convert-bitmap-to-png-or-jpg-using-objective-c

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!