我創建了一個動畫形象,並在適當的UIImageView動畫:如何將動畫圖像保存到iPhone的照片專輯?
- (void)viewDidLoad
{
[super viewDidLoad];
UIImage *image1 = [UIImage imageNamed:@"apress_logo"];
UIImage *image2 = [UIImage imageNamed:@"Icon"];
UIImage *animationImage = [UIImage animatedImageWithImages:[NSArray arrayWithObjects:image1, image2, nil] duration:0.5];
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
imageView.image = animationImage;
[self.view addSubview:imageView];
}
但如果保存到相冊上,它不能動畫agian:
UIImageWriteToSavedPhotosAlbum(animationImage,
self,
@selector(imageSavedToPhotosAlbum:didFinishSavingWithError:contextInfo:),
nil);
那麼,有什麼方法解決將動畫圖像保存到相冊中?
特別感謝!
因此,如何在iOS4的/ 5創建動畫形象照片相冊?或者如何用圖像創建.mov文件,然後將.mov保存到照片專輯?謝謝! – OpenThread
我已經更新了答案 – doNotCheckMyBlog
謝謝,但似乎在參考中,mov呈現爲OpenGLESView,沒有圖像呈現爲mov – OpenThread