ios gif的分解和展示


- (void)viewDidLoad {
    [super viewDidLoad];
    
 
    //分解 gif
    [self deCompositionGif];
    
    //显示gif
    [self showGif];
}

/*
    gif图片分解步骤
    1. 拿到 gif 数据
    2. 将 gif 分解为一帧帧
    3. 将单帧数据转换为 UIImage
    4. 将单帧图片保存
 */
-(void)deCompositionGif{
    //获取gif数据
    NSString *gifPath = [[NSBundle mainBundle] pathForResource:@"timg" ofType:@"gif"];
    NSData *data = [NSData dataWithContentsOfFile:gifPath];
    CGImageSourceRef source = CGImageSourceCreateWithData((__bridge CFDataRef) data, nil);
    //将 gif分解为 一真真的图片
    //获取gif 有多少帧
    size_t count = CGImageSourceGetCount(source);
    NSLog(@"count=%d", count);
    NSMutableArray *tmpArray = [[NSMutableArray alloc] init];
    for (size_t i = 0; i < count; i++) {
        CGImageRef imageref = CGImageSourceCreateImageAtIndex(source, i, NULL);
        //将单帧数据转化为UIImage
        UIImage *image = [UIImage imageWithCGImage:imageref scale:[UIScreen mainScreen].scale orientation:UIImageOrientationUp];
        [tmpArray addObject: image];
        CGImageRelease(imageref);
    }
    CFRelease(source);
    //单帧图片的保存
    int i = 0;
    for (UIImage *image in tmpArray) {
        NSData *data = UIImagePNGRepresentation(image);
        NSArray *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString *gifPath = path[0];
        NSString *pathNum = [gifPath stringByAppendingString: [NSString stringWithFormat:@"%d",i]];
        i++;
        [data writeToFile:pathNum atomically: NO];
    }
    
}

/*
    建立在第一步分解gif的基础上。想要展示需要一步步的分解。
 
 */
- (void) showGif{
    
    NSMutableArray *imageTmp = [[NSMutableArray alloc] init];
    UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 100, 200, 200)];
    [self.view addSubview:imageView];
    UIImage *image1 = [UIImage imageNamed: [NSString stringWithFormat:@"1.png"]];
    UIImage *image2 = [UIImage imageNamed:[NSString stringWithFormat:@"2.jpg"]];
    [imageTmp addObject:image1];
    [imageTmp addObject:image2];
    
    [imageView setAnimationImages:imageTmp];
    [imageView setAnimationRepeatCount:10];
    [imageView setAnimationDuration:1];
    [imageView startAnimating];
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ITzhongzi

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值