在照片应用程序中存储CGImage?(iPhone)

时间:2010-05-02 04:02:29

标签: iphone cgimage photos

假设我有一个CGImage,并希望将它存储在每个iPod Touch / iPhone标配的照片应用程序中,我该怎么做?

1 个答案:

答案 0 :(得分:0)

首先将CGImage转换为UIImage

UIImage *_myImage = [UIImage imageWithCGImage:cgImage];

然后使用UIImageWriteToSavedPhotosAlbum()函数:

UIImageWriteToSavedPhotosAlbum(UIImage *image, id completionTarget, SEL completionSelector, void *contextInfo);

UIImage写入相册。