在ios中使用我自己的自定义图像保存图像

时间:2013-06-17 13:02:54

标签: ios image camera imagenamed

我想在ios 5中使用我自己的图像名将图像保存到相机胶卷。我正在使用AV Foundation访问相机功能。请帮我解决可能的解决方案。

1 个答案:

答案 0 :(得分:0)

// Image to save
  UIImage *img = [UIImage imageNamed:@"ImageName.png"];  

  // Request to save the image to camera roll
  UIImageWriteToSavedPhotosAlbum(img, self, 
              @selector(image:didFinishSavingWithError:contextInfo:), nil);

希望这会有所帮助..