Skip to content

iOS加载webp后缀的图片(利用google开源c代码)

Notifications You must be signed in to change notification settings

mymirror/WebpiOS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WebpiOS

iOS加载webp后缀的图片(利用google开源c代码)

#usegae

1、cocoapod管理

pod 'WebpiOS'

2、手动导入

把webp文件下的文件导入到工程,同时工程依赖SDWebImage第三方框架

导入头文件 #import "UIImage+WebP.h"

@interface UIImage (WebP)

  • (nullable UIImage *)sd_imageWithWebPData:(nullable NSData *)data;

@end

图片转换工具下载地址 https://github.com/mymirror/webp-.git

such as:

UIImage *img = [UIImage sd_imageWithWebPData:[NSData dataWithContentsOfFile:[[NSBundle mainBundle]pathForResource:@"bg_third@3x" ofType:@"webp"]]];

UIImageView imageview = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 320, img.size.height320/img.size.width)];

[self.view addSubview:imageview];

[imageview setImage:img];

About

iOS加载webp后缀的图片(利用google开源c代码)

Resources

Stars

Watchers

Forks

Packages

No packages published