美文网首页
webp图片加载

webp图片加载

作者: 会装系统的程序员 | 来源:发表于2020-04-14 21:18 被阅读0次

1.下载该静态库并导入

https://github.com/YouZhiZheShiJingCheng/YZwebp

2.配置工程

TARGETS->Build Settings->Other Linker Flags 添加一个 -ObjC

3.开始应用

    UIImageView* webp=[[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
    //后缀为小写的时候可以省略
    webp.image=[UIImage imageWithWebP:@"a"];
    webp.backgroundColor=[UIColor redColor];
    webp.center=CGPointMake(self.view.center.x, self.view.center.y*0.5);
    [self.view addSubview:webp];

    UIImageView* webp1=[[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
    webp1.image=[UIImage imageWithWebP:@"a.webp"];
    webp1.backgroundColor=[UIColor greenColor];
    webp1.center=self.view.center;
    [self.view addSubview:webp1];

    //名字大小写不对识别不了
    UIImageView* webp2=[[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
    webp2.image=[UIImage imageWithWebP:@"a.WEBP"];
    webp2.center=CGPointMake(self.view.center.x, self.view.center.y*1.5);
    webp2.backgroundColor=[UIColor blueColor];
    [self.view addSubview:webp2];

Demo地址:

https://github.com/YouZhiZheShiJingCheng/WebpDemo

相关文章

  • iOS - .webp图片显示

    WebP格式,谷歌(google)开发的一种旨在加快图片加载速度的图片格式。 在iOS中会出现加载webp图片显示...

  • iOS 加载webp格式的图片

    苹果原生不支持加载webp格式的图片。 加载网络图片为webp格式的建议使用SDWebImage,它应该iOS开发...

  • iOS-支持webp图片

    一. 本地webp图片+网络webp图片加载 安卓原生就已经支持webp图片了,毕竟是亲儿子啊,iOS可能因为是竞...

  • pod 'libwebp'失败的解决办法

    在使用SDWebImage加载webp格式图片时,需要引入库SDWebImage/WebP。 Podfile 文件...

  • Android 图片资源大瘦身

    Android 图片推荐使用WebP格式的图片 WebP格式,谷歌(google)开发的一种旨在加快图片加载速度的...

  • Flutter知识点: 图片加载

    图片加载一般分为本地加载和网络加载,下面将举例讲述这两种方式。支持格式:JPEG,WebP,GIF,动画WebP ...

  • webp图片加载

    1.下载该静态库并导入 https://github.com/YouZhiZheShiJingCheng/YZwe...

  • web 前端的一些知识

    webp 图片格式WebP格式,谷歌(google)开发的一种旨在加快图片加载速度的图片格式。图片压缩体积大约只有...

  • [iOS]Native应对WebP使用的解决方案

    一、WebP是什么? WebP格式,谷歌(google)开发的一种旨在加快图片加载速度的图片格式。图片压缩体积大约...

  • 每天get几个JavaScript小技巧(四)

    判断图片加载完成 音频完成加载操作 浏览器是否支持Webp格式

网友评论

      本文标题:webp图片加载

      本文链接:https://www.haomeiwen.com/subject/folqphtx.html