iOS图片模糊效果的实现方法

 更新时间:2016年09月30日 10:38:20   作者:vbirdbest  
这篇文章主要为大家详细介绍了iOS图片模糊效果的三种实现方式,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文为大家分享了iOS图片模糊效果的三种实现方式,供大家参考,具体内容如下

1.实现效果依次如图:原图、iOS8效果、Core Image效果、 VImage 效果

-

2. 代码

#import "ViewController.h" 
#import <Accelerate/Accelerate.h> 
 
@interface ViewController () 
 
@end 
 
@implementation ViewController 
 
- (void)viewDidLoad { 
 [super viewDidLoad]; 
 self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background"]]; 
  
// [self iOS8BlurImageImplement]; 
// [self coreImageImplement]; 
 [self vImageImplement]; 
} 
 
// iOS8 使用系统自带的处理方式 
- (void)iOS8BlurImageImplement { 
 UIBlurEffect *beffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]; 
 UIVisualEffectView *view = [[UIVisualEffectView alloc] initWithEffect:beffect]; 
 view.frame = self.view.bounds; 
 [self.view addSubview:view]; 
} 
 
 
// 使用CoreImage实现图片模糊 
- (void)coreImageImplement{ 
 CIContext *context = [CIContext contextWithOptions:nil]; 
  
 NSError *error = nil; 
 NSString *filePath = [[NSBundle mainBundle] pathForResource:@"background" ofType:@"png"]; 
 NSData *imageData = [NSData dataWithContentsOfFile:filePath options:NSDataReadingUncached error:&error]; 
  
 //NSData *imageData = [NSData dataWithContentsOfFile:@"background.png"]; 
 CIImage *image = [CIImage imageWithData:imageData]; 
 CIFilter *filter = [CIFilter filterWithName:@"CIGaussianBlur"]; 
 [filter setValue:image forKey:kCIInputImageKey]; 
 [filter setValue:@2.0f forKey:@"inputRadius"]; 
 CIImage *result = [filter valueForKey:kCIOutputImageKey]; 
 CGImageRef outImage = [context createCGImage:result fromRect:[result extent]]; 
 UIImage *bluerImage = [UIImage imageWithCGImage:outImage]; 
  
 UIImageView *imageView = [[UIImageView alloc] initWithImage:bluerImage]; 
 imageView.frame = self.view.bounds; 
 [self.view addSubview:imageView]; 
} 
 
 
// 使用vImage API实现图片模糊 
// iOS5.0中新增了vImage API可以使用,它属于Accelerate.Framework,所以如果你要使用它要在工程中加入这个Framework。模糊算法使用的是vImageBoxConvolve_ARGB8888这个函数。 
- (void)vImageImplement { 
 UIImage *image = [UIImage imageNamed:@"background"]; 
 UIImage *blurImage = [self blurryImage:image withBlurLevel:0.5]; 
 self.view.backgroundColor = [UIColor colorWithPatternImage:blurImage]; 
} 
 
- (UIImage *)blurryImage:(UIImage *)image withBlurLevel:(CGFloat)blur { 
 if (blur < 0.f || blur > 1.f) { 
  blur = 0.5f; 
 } 
 int boxSize = (int)(blur * 100); 
 boxSize = boxSize - (boxSize % 2) + 1; 
  
 CGImageRef img = image.CGImage; 
  
 vImage_Buffer inBuffer, outBuffer; 
 vImage_Error error; 
  
 voidvoid *pixelBuffer; 
  
 CGDataProviderRef inProvider = CGImageGetDataProvider(img); 
 CFDataRef inBitmapData = CGDataProviderCopyData(inProvider); 
  
 inBuffer.width = CGImageGetWidth(img); 
 inBuffer.height = CGImageGetHeight(img); 
 inBuffer.rowBytes = CGImageGetBytesPerRow(img); 
  
 inBuffer.data = (void*)CFDataGetBytePtr(inBitmapData); 
  
 pixelBuffer = malloc(CGImageGetBytesPerRow(img) * 
       CGImageGetHeight(img)); 
  
 if(pixelBuffer == NULL) 
  NSLog(@"No pixelbuffer"); 
  
 outBuffer.data = pixelBuffer; 
 outBuffer.width = CGImageGetWidth(img); 
 outBuffer.height = CGImageGetHeight(img); 
 outBuffer.rowBytes = CGImageGetBytesPerRow(img); 
  
 error = vImageBoxConvolve_ARGB8888(&inBuffer, 
          &outBuffer, 
          NULL, 
          0, 
          0, 
          boxSize, 
          boxSize, 
          NULL, 
          kvImageEdgeExtend); 
  
  
 if (error) { 
  NSLog(@"error from convolution %ld", error); 
 } 
  
 CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); 
 CGContextRef ctx = CGBitmapContextCreate( 
            outBuffer.data, 
            outBuffer.width, 
            outBuffer.height, 
            8, 
            outBuffer.rowBytes, 
            colorSpace, 
            kCGImageAlphaNoneSkipLast); 
 CGImageRef imageRef = CGBitmapContextCreateImage (ctx); 
 UIImage *returnImage = [UIImage imageWithCGImage:imageRef]; 
  
 //clean up 
 CGContextRelease(ctx); 
 CGColorSpaceRelease(colorSpace); 
  
 free(pixelBuffer); 
 CFRelease(inBitmapData); 
  
 CGColorSpaceRelease(colorSpace); 
 CGImageRelease(imageRef); 
  
 return returnImage; 
} 
 
@end 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Swift Self详解及简单实例代码

    Swift Self详解及简单实例代码

    这篇文章主要介绍了Swift Self详解及简单实例代码的相关资料,这里对self 进行了详细介绍并附实例代码,需要的朋友可以参考下
    2016-12-12
  • IOS开发压缩后图片模糊问题解决

    IOS开发压缩后图片模糊问题解决

    这篇文章主要为大家介绍了IOS开发压缩后图片模糊问题解决实例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-07-07
  • iOS推送SDK集成详细对比

    iOS推送SDK集成详细对比

    本文通过SDK功能集成、大小价格等各个方便全面进行了几个大平台的对比,希望对你有用。
    2018-01-01
  • iOS仿邮箱大师的九宫格手势密码解锁

    iOS仿邮箱大师的九宫格手势密码解锁

    这篇文章主要为大家详细介绍了iOS仿邮箱大师的手势密码解锁的相关资料,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-04-04
  • ios实现搜索关键字高亮效果

    ios实现搜索关键字高亮效果

    这篇文章主要介绍了ios实现搜索关键字高亮效果的方法以及实例代码分享,有需要的朋友参考学习下。
    2018-02-02
  • iOS仿热门话题热点轮播界面tableView

    iOS仿热门话题热点轮播界面tableView

    这篇文章主要为大家详细介绍了iOS仿热门话题热点轮播界面tableView,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-09-09
  • IOS 代理方式实现实例详解

    IOS 代理方式实现实例详解

    这篇文章主要介绍了IOS 代理方式实现实例详解的相关资料,需要的朋友可以参考下
    2016-11-11
  • IOS绘制动画颜色渐变折线条

    IOS绘制动画颜色渐变折线条

    这篇文章主要介绍了IOS绘制动画颜色渐变折线条的相关资料,需要的朋友可以参考下
    2016-02-02
  • iOS 隐私权限和通过openURL实现跳转实例

    iOS 隐私权限和通过openURL实现跳转实例

    这篇文章主要介绍了iOS 隐私权限和通过openURL实现跳转实例,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-06-06
  • iOS 对当前webView进行截屏的方法

    iOS 对当前webView进行截屏的方法

    下面小编就为大家带来一篇iOS 对当前webView进行截屏的方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-04-04

最新评论