swift-Gif动画和JSON动画分析

项目中使用动画,开始采用Gif动画,发现Gif动画文件1.5M 在线加载慢,改为json动画使用Lottie 第三方库加载对比分析,优缺点分析主要两点:

1.json文件只有400k 对比gif文件包少了三分之二 ;

2.UI效果对比gif显示放大有齿轮和镂空的失真,json动画UI还原度高,但是json动画设计转出json文件更麻烦些;

场景分析:

1.gif动画适合小图标动画效果

2.json动画适合大图动画效果

Gif demo代码片段

/// 显示本地 GIF 图片

    func showLocalGIF(name: String?) {

        guard let name = name else return }

        self.gifImage=GIFImage(named: name)

    }

json 动画代码实例,采用pod 'lottie-ios', '3.2.3'版本  ,本地json文件显示动画:

let animationView = AnimationView(name: "inviteData")

        animationView.frame = CGRect(x: 0, y: 0, width: (kScreenWidth - 80)*kWidthScale, height:((kScreenWidth - 80)*1225/879)*kWidthScale)

        imageBackVIew.addSubview(animationView)

        animationView.contentMode = .scaleToFill

        animationView.loopMode = .loop

        animationView.play()

        animationView.play { (isFinished) in

        }

在线加载json文件采用两种方式:

一、在线加载json文件,采用pod 'lottie-ios', '3.2.3'版本  网页可直接打卡json文件:

if let url = URL(string: "https://yangtuo.oss-cn-hangzhou.aliyuncs.com/mall2c/happy_gift.json") {

        giftAnimaView = AnimationView(url: url, imageProvider: self, closure: { [weak self] (error) in

             guard let `self` = self else { return }

                if let _ = error {

                    print("网络动画加载失败~~")

                } else {

                    /// 获取是异步的,所以需要等待动画获取完成

                    self.giftAnimaView.play { (finished) in

                }

  }

                }, animationCache: self)

            giftAnimaView.frame = CGRect(x: 0, y: 0, width: (kScreenWidth - 80)*kWidthScale, height:((kScreenWidth - 80)*1225/879)*kWidthScale)

            giftAnimaView.contentMode = .scaleToFill

            giftAnimaView.loopMode = .loop

            imageBackVIew.addSubview(giftAnimaView)

        }


二、在线加载json文件,采用pod 'lottie-ios', '3.2.3'版本  需下载json文件:

LPLottieResourceManager.shared.loadBundleProvider(123412,"\(BackGround)") {[weakself] (jsonpath, provider)in

             guard let`self` =self else{return}

             guard let  jsonfile = json path else{return}

            DeLog("jsonFile:\(jsonfile)")

             self.giftAnimaView=AnimationView.init(filePath:jsonfile)

             iflet  prov = provider {

                 self.giftAnimaView.imageProvider= prov

             }


            self.giftAnimaView.frame = CGRect(x: 0, y: 0, width: (kScreenWidth - 80)*kWidthScale, height:((kScreenWidth - 80)*1225/879)*kWidthScale)

            self.giftAnimaView.contentMode = .scaleToFill

            self.giftAnimaView.loopMode = .loop

            self.giftAnimaView.play()

            self.imageBackVIew.addSubview(self.giftAnimaView)

         }


LPLottieResourceManager 类继承NSObject,实现思路先通过Moya下载本地资源包,通过资源包打卡在线加载:

importUIKit

importFoundation

//import ZipArchive

import Moya

importLottie

typealiaslottieResultBlock= (_ jsonfullpath:String?,_ provider:BundleImageProvider?) ->Void

class LPLottieResourceManager:NSObject {

    let  filepath  =NSHomeDirectory() + "/Documents/LiveKit/GiftFile"

    static  let  shared = LPLottieResourceManager()

    override init() {

        super.init()

        ifFileManager.default.fileExists(atPath:filepath) {

            print("礼物 目录存在")

        }

        else{

            try! FileManager.default.createDirectory(atPath: filepath,

                                                     withIntermediateDirectories:true,attributes:nil)

        }

    }

    /// 加载lottie特效

    /// - Parameters:

    ///  - giftId: 特效id

    ///  - downloadurl: 特效下载地址

    ///  - animationresult: 特效 images目录

    func  loadBundleProvider(_giftId:Int,_downloadurl:String,_animationresult:@escapinglottieResultBlock) {

        letfullpath =filepath+"/\(giftId)/data.json"

        letimgprovider =filepath+"/\(giftId)/images"

        varjsonpath:String?=nil

        ifFileManager.default.fileExists(atPath: fullpath) {

            jsonpath = fullpath

            if  FileManager.default.fileExists(atPath: imgprovider)

            {

                let  provider =BundleImageProvider.init(bundle:Bundle.main,searchPath: imgprovider)

                animationresult(jsonpath,provider)

            }else{

                animationresult(jsonpath,nil)

            }

        }

            //网络下载 并解压

        else{

            let  giftpath =filepath+"/\(giftId)"

            letassetName =  "\(giftId)"

            jsonpath = giftpath +"/data.json"

            let  urladdress  = downloadurl

            //通过Moya进行下载

            MyServiceProvider.request(.downloadGiftLottie(downloadurl:urladdress,giftDirectoryName: assetName)) { result in

                switchresult {

                case.success:

                    letlocalLocation:URL= DefaultDownloadDir.appendingPathComponent(assetName)

                    print("下载完毕!保存地址:\(localLocation)")

                    if  urladdress.contains(".zip") {

                        let  urlpath =URL.init(fileURLWithPath:self.filepath+"/\(giftId).zip")

                        do{

                            try      FileManager.default.createDirectory(atPath:self.filepath+"/\(giftId)",withIntermediateDirectories:true,attributes:nil)

                            //得到正确的资源包  12312/ data images

                            if  FileManager.default.fileExists(atPath: imgprovider)

                            {

                                let  provider =BundleImageProvider.init(bundle:Bundle.main,searchPath: imgprovider)

                                animationresult(jsonpath,provider)

                            }else{

                                animationresult(jsonpath,nil)

                            }

                            //                        print(zipurl)

                        }catch(leterr) {

                            print("解压失败")

                            animationresult(nil,nil)

                        }

                    }

                    elseifurladdress.contains(".json") {

                        do{

                            try      FileManager.default.createDirectory(atPath:self.filepath+"/\(giftId)",withIntermediateDirectories:true,attributes:nil)

                            try  FileManager.default.moveItem(atPath:self.filepath+"/data.json",toPath: giftpath +"/data.json")

                            animationresult(jsonpath,nil)

                        }catch(leterr) {

                            debugPrint("文件出错\(err)")

                            animationresult(nil,nil)

                        }

                    }

                caselet.failure(error):

                    print(error)

                    animationresult(nil,nil)

                }

            }

        }

    }

}

//MARK:单独组件处理下载

//初始化请求的provider

let MyServiceProvider = MoyaProvider<DownLoadService>()

//请求分类

public enum DownLoadService {

    casedownloadGiftLottie(downloadurl:String,giftDirectoryName:String)//下载文件

}

//请求配置

extension DownLoadService: TargetType {

    publicvarpath:String{

        return""

    }

    //服务器地址

    publicvarbaseURL:URL{

        switchself{

        case.downloadGiftLottie(let  url , _ ):

            returnURL.init(string: url)!

        default:

            return URL(string: "http://www.baidu.com")!

        }

    }

    //请求类型

    publicvarmethod: Moya.Method{

        return.get

    }

    //请求任务事件(这里附带上参数)

    publicvartask:Task{

        switchself{

        case.downloadGiftLottie(let  downloadurl ,letsaveName):

            varlocalLocation:URL!

            ifdownloadurl.contains(".zip") {

                localLocation = DefaultDownloadDir.appendingPathComponent(saveName+".zip")

            }elseifdownloadurl.contains(".json") {


                localLocation = DefaultDownloadDir.appendingPathComponent("data.json")

            }

            //


            letdownloadDestination:DownloadDestination= { _, _in


                return(localLocation, .removePreviousFile) }

            return.downloadDestination(downloadDestination)

        }


    }


    //是否执行Alamofire验证

    public var validate:Bool{

        return false

    }


    //这个就是做单元测试模拟的数据,只会在单元测试文件中有作用

    public var sampleData:Data{

        return"{}".data(using:String.Encoding.utf8)!

    }


    //请求头

    publicvarheaders: [String:String]? {

        returnnil

    }

}

//定义下载的DownloadDestination(不改变文件名,同名文件不会覆盖)

privateletDefaultDownloadDestination:DownloadDestination= { temporaryURL, responsein

    return(DefaultDownloadDir.appendingPathComponent(response.suggestedFilename!), [.removePreviousFile])

}

//默认下载保存地址(用户文档目录)

let DefaultDownloadDir: URL = {

    return  URL(fileURLWithPath: LPLottieResourceManager.shared.filepath)

}()

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,013评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,205评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,370评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,168评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,153评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,954评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,271评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,916评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,382评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,877评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,989评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,624评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,209评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,199评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,418评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,401评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,700评论 2 345

推荐阅读更多精彩内容