GIF 五部走如下 :
 
1 从相册中取出GIF图的Data
2 通过腾讯的IM发送Gif图
3 展示GIF图
4 GIF图URL缓存机制
5 将展示的GIF图存到相册中
 
 
一  从相册中取出GIF图中的Data 
 
1.TZImagePickerController中利用方法来获取到gif图片的image和asses
 
- (void)imagePickerController:(TZImagePickerController *)picker didFinishPickingGifImage:(UIImage *)animatedImage sourceAssets:(id)asset
 
2.通过如下方法判断是否是gif格式:
 
if ([[asset valueForKey:@"filename"] tz_containsString:@"GIF"]) 
 
3.如果是gif图片格式,通过  PHImageManager  的方法利用字段assets来获取gif动图的data数据
 
 
二 通过腾讯的IM发送Gif图
 
1.将gif的数据存到临时文件夹
 
            NSString *tempDir = NSTemporaryDirectory();
            NSString *snapshotPath = [NSStringstringWithFormat:@"%@%3.f%@.gif", tempDir, [NSDatetimeIntervalSinceReferenceDate],[[NSProcessInfoprocessInfo] globallyUniqueString]];
            NSError *err;
            NSFileManager *fileMgr = [NSFileManagerdefaultManager];
            if (![fileMgr createFileAtPath:snapshotPath contents:imageData attributes:nil])
            {
                DebugLog(@"Upload Image Failed: fail to create uploadfile: %@", err);
            }
 
2.封装成消息体发送
 
            TIMMessage * msg = [[TIMMessagealloc] init];
            TIMImageElem * image_elem = [[TIMImageElemalloc] init];
           
            image_elem.path = snapshotPath;
            image_elem.format = TIM_IMAGE_FORMAT_GIF;
            image_elem.level = TIM_IMAGE_COMPRESS_ORIGIN;
            [msg addElem:image_elem];
 
 
                       @weakify(self);
            [self.conversationsendMessage:msg succ:^() {
                @strongify(self);
                //IDSPostNFWithObj(kIMPartyRoomSendMessage,msg);
                [selfforceUpdataTableView];
                NSLog(@"ddsuccess");
               
            } fail:^(int code, NSString *err) {
                NSLog(@"ddfailed");
            }];
 
 
三 展示GIF图
 
1.在 MJPhoto 中本地路径展示方式:
 
MJPhoto *photo = [[MJPhotoalloc] init];
NSData *data = [NSDatadataWithContentsOfFile:picModel.picPath];
photo.photodata = data;
photo.image = [UIImagesd_tz_animatedGIFWithData:data];
 
2.在 MJPhoto 远程url路径展示方式:
 
photo.image = [UIImagesd_tz_animatedGIFWithData:[NSDatadataWithContentsOfURL:[NSURLURLWithString:imageURL]]];
 
3.在 cell 中使用 FLAnimatedImageView 展示方式:
 
[self.animatedImageViewsd_setImageWithURL:imageURL];
 
Ps:前提是需要更新SDWebImage版本,需要有 FLAnimatedImageView+WebCache 文件
 
四 GIF图URL缓存机制
 
1.通过 gifURL 加入缓存机制:
 
                    NSURL *newUrl = [NSURLURLWithString:imageURL];
                    [[SDWebImageDownloadersharedDownloader] downloadImageWithURL:newUrl
                                                                          options:0
                                                                         progress:nil
                                                                        completed:^(UIImage *image, NSData *data, NSError *error, BOOL finished) {
                                                                            [[[SDWebImageManagersharedManager] imageCache] storeImage:image imageData:data forKey:newUrl.absoluteStringtoDisk:YEScompletion:^{
                                                                                photo.image = [UIImagesd_tz_animatedGIFWithData:data];
                                                                                photo.photodata = data;
                                                                            }];
                                                                        }];
                }
 
- (NSData *)imageDataFromDiskCacheWithKey:(NSString *)key
{
    NSString *path = [[[SDWebImageManagersharedManager] imageCache] defaultCachePathForKey:key];
    return [NSDatadataWithContentsOfFile:path];
}
 
 
五 将展示的GIF图存到相册中
 
 
            if ([UIDevicecurrentDevice].systemVersion.floatValue >= 9.0f) {
                [[PHPhotoLibrarysharedPhotoLibrary] performChanges:^{
                    PHAssetResourceCreationOptions *options = [[PHAssetResourceCreationOptionsalloc] init];
                    [[PHAssetCreationRequestcreationRequestForAsset] addResourceWithType:PHAssetResourceTypePhotodata:photo.photodataoptions:options];
                } completionHandler:^(BOOL success, NSError * _Nullable error) 
 
                        if (success) {
                            。。。
                        }
                        else {
                            。。。
                        }
                }];
            }
            else {
                UIImageWriteToSavedPhotosAlbum(photo.image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
            }
 
 
思考与行动:
 
1.写出 Gif格式的 URL 转换成 GIF格式的data数据类型的转换函数
 
2.写出 Gif格式的 UIImage 转换成 GIF格式的data数据类型的转换函数
 
3.写出Gif格式的data数据类型的转换成 GIF格式的UIImage的转换函数
 
4.写出 Gif格式的 Assets 转换成 GIF格式的data数据类型的转换函数
 
 
======
 
附录:
 
+ (UIImage *)sd_tz_animatedGIFWithData:(NSData *)data {
    if (!data) {
        returnnil;
    }
   
    CGImageSourceRef source = CGImageSourceCreateWithData((__bridgeCFDataRef)data, NULL);
   
    size_t count = CGImageSourceGetCount(source);
   
    UIImage *animatedImage;
   
    if (count <= 1) {
        animatedImage = [[UIImagealloc] initWithData:data];
    }
    else {
        NSMutableArray *images = [NSMutableArrayarray];
       
        NSTimeInterval duration = 0.0f;
       
        for (size_t i = 0; i < count; i++) {
            CGImageRef image = CGImageSourceCreateImageAtIndex(source, i, NULL);
            if (!image) {
                continue;
            }
           
            duration += [selfsd_frameDurationAtIndex:i source:source];
           
            [images addObject:[UIImageimageWithCGImage:image scale:[UIScreenmainScreen].scaleorientation:UIImageOrientationUp]];
           
            CGImageRelease(image);
        }
       
        if (!duration) {
            duration = (1.0f / 10.0f) * count;
        }
       
        animatedImage = [UIImageanimatedImageWithImages:images duration:duration];
    }
   
    CFRelease(source);
   
    return animatedImage;
}
 
...

iOS11中iOS处理GIF图片的方式的更多相关文章

  1. iOS11中navigationBar上 按钮图片设置frame无效 不受约束 产生错位问题 解决

    问题描述: 正常样式: 在iOS 11 iPhone X上显示效果: 观察顶部navBar上的左侧按钮  在ios 11 上  这个按钮的图片不受设置的尺寸约束,按其真实大小展示,造成图片错位,影响界 ...

  2. iOS开发中的4种数据持久化方式【二、数据库 SQLite3、Core Data 的运用】

                   在上文,我们介绍了ios开发中的其中2种数据持久化方式:属性列表.归档解档.本节将继续介绍另外2种iOS持久化数据的方法:数据库 SQLite3.Core Data 的运 ...

  3. iOS - 选取相册中iCloud云上图片和视频的处理

    关于iOS选取相册中iCloud云上图片和视频  推荐看:TZImagePickerController的源码,这个是一个非常靠谱的相册选择图片视频的库 .当然也可以自己写 如下遇到的问题 工作原因, ...

  4. IOS开发数据存储篇—IOS中的几种数据存储方式

    IOS开发数据存储篇—IOS中的几种数据存储方式 发表于2016/4/5 21:02:09  421人阅读 分类: 数据存储 在项目开发当中,我们经常会对一些数据进行本地缓存处理.离线缓存的数据一般都 ...

  5. ios中摄像头/相册获取图片压缩图片上传服务器方法总结

    本文章介绍了关于ios中摄像头/相册获取图片,压缩图片,上传服务器方法总结,有需要了解的同学可以参考一下下.     这几天在搞iphone上面一个应用的开发,里面有需要摄像头/相册编程和图片上传的问 ...

  6. iOS开发之UITableView中计时器的几种实现方式(NSTimer、DispatchSource、CADisplayLink)

    最近工作比较忙,但是还是出来更新博客了.今天博客中所涉及的内容并不复杂,都是一些平时常见的一些问题,通过这篇博客算是对UITableView中使用定时器的几种方式进行总结.本篇博客会给出在TableV ...

  7. TIBCO Jasper Report 中显示图片的方式

    最近在做的项目中,需要输出很多报表类文档,于是选择用jasper来帮助完成. 使用jasper studio的版本是 :TIB_js-studiocomm_6.12.2_windows_x86_64. ...

  8. iOS:实现图片的无限轮播(二)---之使用第三方库SDCycleScrollView

    iOS:实现图片的无限轮播(二)---之使用第三方库SDCycleScrollView 时间:2016-01-19 19:13:43      阅读:630      评论:0      收藏:0   ...

  9. TuSDK 简易使用方法 持有图片对象方式

    TuSDK 为涂图照相应用的SDK,打包后文件大小约为5M,缺点为包比较大,且图片清晰度较差一些,优点为直接可以引用滤镜贴纸,方便易用.   使用方法如下:    1.AppDelegate.m 中加 ...

随机推荐

  1. tolua#是Unity静态绑定lua的一个解决方案

    tolua#代码简要分析 2017-04-16 23:02 by 风恋残雪, 98 阅读, 1 评论, 收藏, 编辑 简介 tolua#是Unity静态绑定lua的一个解决方案,它通过C#提供的反射信 ...

  2. Quartz 在线Cron表达式

    Quartz自己配置Cron好麻烦,下面是一个在线Cron表达式生成器的网站,非常方便,现在使用Cron时基本上就直接用这个了. http://cron.qqe2.com/ Cron表达式 cronE ...

  3. General-Purpose Operating System Protection Profile

    1 Protection Profile Introduction   This document defines the security functionality expected to be ...

  4. 关于javascript中的深拷贝问题

    一直在尝试为javascript找一个快捷可靠的对象深拷贝的方法,昨天突发奇想,把对象push到一个空数组里,然后对改数组通过concat()或slice()进行拷贝,然后取出数组的第一个元素复制给变 ...

  5. windows下安装ffmpeg

    一.下载地址: 网址:https://ffmpeg.org/ 选择Windows版本:https://ffmpeg.org/download.html#build-windows 二.解压安装: 下载 ...

  6. vista/win7系统 红警/CS/星际争霸 局域网连接方法

    昨晚,闲来无事,忽然想起打红警来,于是和宿舍舍友商量一起联机打红警, 可是在win7下不能联机红警,网上很多人都这么说,昨晚我折腾了2小时,终于解决了这个问题. win7系统是可以联机打红警的!!!! ...

  7. windows mysql5.7 InnoDB 通过frm与ibd对数据进行恢复

    参考:https://www.jianshu.com/p/50a2e13cd5cf 安装MySQL Utilities 下载地址:https://dev.mysql.com/downloads/uti ...

  8. HDU 4862 Jump(更多的联合培训学校1)(最小费用最大流)

    职务地址:pid=4862">HDU4862 最小费用流做的还是太少. 建图想不出来. . . 直接引用官方题解的话吧... 最小K路径覆盖的模型.用费用流或者KM算法解决,构造二部图 ...

  9. mybatis 使用经验小结 good

    一.多数据源问题 主要思路是把dataSource.sqlSesstionFactory(用来产生sqlSession).MapperScannerConfigurer在配置中区分开,各Mapper对 ...

  10. POJ3723 Conscription 【并检查集合】

    Conscription Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 8071   Accepted: 2810 Desc ...