Can anyone tell me how do i convert a series of images into a movie,which i want to store in Camera role.we can use image Animation. Sample Code Below.
CGRect myImageRect = CGRectMake(0.0f, 0.0f, 768, 1024);
UIImageView *myAnimatedView = [UIImageView alloc];
[myAnimatedView initWithFrame:myImageRect];
myAnimatedView.animationImages =appDelegate.imageArray;
myAnimatedView.animationDuration = 15.0;
myAnimatedView.animationRepeatCount = 0;
[myAnimatedView startAnimating];``
Now i want to convert this image animation into a movie.which i want to save in Camera Roll of ipad as a movie(Quick time Movie)
Thank's