加载gif图片,过渡效果:

调用:

- (id)initWithGifView:(UIView *)view

{

self = [super initWithView:view];

if (self) {

self.color = [UIColor clearColor];

NSString  *filePath = [[NSBundle bundleWithPath:[[NSBundle mainBundle] bundlePath]] pathForResource:@"loading2.gif" ofType:nil];

NSData  *imageData = [NSData dataWithContentsOfFile:filePath];

UIImageView *loadingImgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 110, 90)];

loadingImgView.contentMode = UIViewContentModeCenter;

loadingImgView.image = [UIImage sd_animatedGIFWithData:imageData];

self.customView = loadingImgView;

self.mode = MBProgressHUDModeCustomView;

[view addSubview:self];

[self show:YES];

}

return self;

}

封装:

+ (UIImage *)sd_animatedGIFWithData:(NSData *)data {

if (!data) {

return nil;

}

CGImageSourceRef source = CGImageSourceCreateWithData((__bridge CFDataRef)data, NULL);

size_t count = CGImageSourceGetCount(source);

UIImage *animatedImage;

if (count <= 1) {

animatedImage = [[UIImage alloc] initWithData:data];

}

else {

NSMutableArray *images = [NSMutableArray array];

NSTimeInterval duration = 0.0f;

for (size_t i = 0; i < count; i++) {

CGImageRef image = CGImageSourceCreateImageAtIndex(source, i, NULL);

duration += [self sd_frameDurationAtIndex:i source:source];

[images addObject:[UIImage imageWithCGImage:image scale:[UIScreen mainScreen].scale orientation:UIImageOrientationUp]];

CGImageRelease(image);

}

if (!duration) {

duration = (1.0f / 10.0f) * count;

}

animatedImage = [UIImage animatedImageWithImages:images duration:duration];

}

CFRelease(source);

return animatedImage;

}

+ (float)sd_frameDurationAtIndex:(NSUInteger)index source:(CGImageSourceRef)source {

float frameDuration = 0.1f;

CFDictionaryRef cfFrameProperties = CGImageSourceCopyPropertiesAtIndex(source, index, nil);

NSDictionary *frameProperties = (__bridge NSDictionary *)cfFrameProperties;

NSDictionary *gifProperties = frameProperties[(NSString *)kCGImagePropertyGIFDictionary];

NSNumber *delayTimeUnclampedProp = gifProperties[(NSString *)kCGImagePropertyGIFUnclampedDelayTime];

if (delayTimeUnclampedProp) {

frameDuration = [delayTimeUnclampedProp floatValue];

}

else {

NSNumber *delayTimeProp = gifProperties[(NSString *)kCGImagePropertyGIFDelayTime];

if (delayTimeProp) {

frameDuration = [delayTimeProp floatValue];

}

}

// Many annoying ads specify a 0 duration to make an image flash as quickly as possible.

// We follow Firefox's behavior and use a duration of 100 ms for any frames that specify

// a duration of <= 10 ms. See <rdar://problem/7689300> and <http://webkit.org/b/36082>

// for more information.

if (frameDuration < 0.011f) {

frameDuration = 0.100f;

}

CFRelease(cfFrameProperties);

return frameDuration;

}

+ (UIImage *)sd_animatedGIFNamed:(NSString *)name {

CGFloat scale = [UIScreen mainScreen].scale;

if (scale > 1.0f) {

NSString *retinaPath = [[NSBundle mainBundle] pathForResource:[name stringByAppendingString:@"@2x"] ofType:@"gif"];

NSData *data = [NSData dataWithContentsOfFile:retinaPath];

if (data) {

return [UIImage sd_animatedGIFWithData:data];

}

NSString *path = [[NSBundle mainBundle] pathForResource:name ofType:@"gif"];

data = [NSData dataWithContentsOfFile:path];

if (data) {

return [UIImage sd_animatedGIFWithData:data];

}

return [UIImage imageNamed:name];

}

else {

NSString *path = [[NSBundle mainBundle] pathForResource:name ofType:@"gif"];

NSData *data = [NSData dataWithContentsOfFile:path];

if (data) {

return [UIImage sd_animatedGIFWithData:data];

}

return [UIImage imageNamed:name];

}

}

- (UIImage *)sd_animatedImageByScalingAndCroppingToSize:(CGSize)size {

if (CGSizeEqualToSize(self.size, size) || CGSizeEqualToSize(size, CGSizeZero)) {

return self;

}

CGSize scaledSize = size;

CGPoint thumbnailPoint = CGPointZero;

CGFloat widthFactor = size.width / self.size.width;

CGFloat heightFactor = size.height / self.size.height;

CGFloat scaleFactor = (widthFactor > heightFactor) ? widthFactor : heightFactor;

scaledSize.width = self.size.width * scaleFactor;

scaledSize.height = self.size.height * scaleFactor;

if (widthFactor > heightFactor) {

thumbnailPoint.y = (size.height - scaledSize.height) * 0.5;

}

else if (widthFactor < heightFactor) {

thumbnailPoint.x = (size.width - scaledSize.width) * 0.5;

}

NSMutableArray *scaledImages = [NSMutableArray array];

UIGraphicsBeginImageContextWithOptions(size, NO, 0.0);

for (UIImage *image in self.images) {

[image drawInRect:CGRectMake(thumbnailPoint.x, thumbnailPoint.y, scaledSize.width, scaledSize.height)];

UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();

[scaledImages addObject:newImage];

}

UIGraphicsEndImageContext();

return [UIImage animatedImageWithImages:scaledImages duration:self.duration];

}

我调用的类是继承MBProgressHUD的。大家看的时候自己在研究下。

加载gif图过渡效果的更多相关文章

  1. Android 高清加载巨图方案 拒绝压缩图片

    Android 高清加载巨图方案 拒绝压缩图片 转载请标明出处: http://blog.csdn.net/lmj623565791/article/details/49300989: 本文出自:[张 ...

  2. Unity使用脚本进行批量动态加载贴图

    先描述一下我正在做的这个项目,是跑酷类音游. 那么跑酷类音游在绘制跑道上的时候,就要考虑不同的砖块显示问题.假设我有了一个节奏列表,那么我们怎么将不同的贴图贴到不同的砖块上去呢? 我花了好几个小时才搞 ...

  3. 简易仿ios菊花加载loading图

    原文链接:https://mp.weixin.qq.com/s/wBbQgOfr59wntNK9ZJ5iRw 项目中经常会用到加载数据的loading显示图,除了设计根据app自身设计的动画loadi ...

  4. Android内存优化————加载长图

    项目中总会遇到加载长图的需求,图片的长度可能是手机长度的很多倍,也就是需要通过滑动来查看图片.比较简单的实现方式就是使用ScrollView来加载长图,但是这样做有一个很严重的问题,就是内存消耗严重. ...

  5. SurfaceView加载长图

    1:SurfaceView加载长图,移到.可以充当背景 效果截图 2:View (淡入淡出动画没实现:记录下) package com.guoxw.surfaceviewimage; import a ...

  6. React-Native 之 GD (二十)removeClippedSubviews / modal放置的顺序 / Android 加载git图\动图 / 去除 Android 中输入框的下划线 / navigationBar

    1.removeClippedSubviews 用于提升大列表的滚动性能.需要给行容器添加样式overflow:’hidden’.(Android已默认添加此样式)此属性默认开启 这个属性是因为在早期 ...

  7. H5异步加载多图

    异步加载多图(可能没啥用,加载慢)(图片预加载,提前给浏览器缓存图片) 1. 用一个计数变量记录需要加载的图片个数 2. 用new Image()去加载,加载完给此对象的src赋值要加载的url路径( ...

  8. Android 高清加载巨图方案, 拒绝压缩图片

    源地址:http://blog.csdn.net/lmj623565791/article/details/49300989 一.概述 距离上一篇博客有段时间没更新了,主要是最近有些私事导致的,那么就 ...

  9. 关于JVM加载内存图学习小密招

    先看如下代码: Person.java public class Person { private String name; private int age; static int count = 0 ...

随机推荐

  1. 层次查询start with ... connect by

    如:select distinct dep_id from t_sys_dep_dimensions start with dep_id = (select dept_id from t_sys_pe ...

  2. MVC-生成验证码

    1.在网上可以随便找一个生成验证码的类例如: using System; using System.Drawing; using System.Drawing.Imaging; using Syste ...

  3. php之类,对象(二)继承性,static静态的,const常量

    三大特性 之二 继承性: 1.概念:如果一个类有子类,那么该子类会继承父类的一切东西,但私有成员访问不到. 2.在定义子类时需要加关键字:extends class Text extends Info ...

  4. MySQL历史版本下载(官方)

    http://downloads.mysql.com/archives/community/ 社区版本(开源免费)

  5. Visual Studio的广告剧

    一个热衷于code的developer,一个热衷于developer的girl,他们将发生怎样的故事? 第一集:<想做你的Code> 第二集:<让爱延长> 第三集:<幸福 ...

  6. 1. Server.Transfer和Response.Redirect

    今天在使用ServerTransfer和Response.Redirect定位到当前页面来实现刷新页面时,发现了一些现象: 1.使用Response.Redirect刷新本页面,造成当前页面显示的数据 ...

  7. VC2013 添加库文件

    1.项目--〉属性--〉链接器 1. You #include the header file (.h) file in your project as necessary.   2. You lis ...

  8. 破解官方recovery的签名验证

    步骤简述1.解包recovery.img,2.反编译/sbin/recovery,用ida64plus3.在反编译出来的文本中查找:signature 4.简单的看一下指令流程,CBZ下面是faile ...

  9. Android 源码编译环境搭建(64位Ubuntu)各种依赖包安装

    1.准备: 普通PC(要求能上网), PC的操作系统Ubuntu 10.04 LTS(64位的),已经下载好的Android 1.6_r1的源代码. 2.Linux的依赖package安装: 为了更快 ...

  10. Spinner 实现key value 效果

    在使用Spinner进行下拉列表时,我们一般都会使用字符串数组的方式加ArrayAdapter,取到的列表值就是我们所看到的Text.如果我们想实现网页中select <option value ...