假设我有一个CGImage,并希望将它存储在每个iPod Touch / iPhone标配的照片应用程序中,我该怎么做?
答案 0 :(得分:0)
首先将CGImage
转换为UIImage
:
UIImage *_myImage = [UIImage imageWithCGImage:cgImage];
然后使用UIImageWriteToSavedPhotosAlbum()
函数:
UIImageWriteToSavedPhotosAlbum(UIImage *image, id completionTarget, SEL completionSelector, void *contextInfo);
将UIImage
写入相册。