图片模糊化处理

来源:互联网 发布:0基础可以去美工学徒吗 编辑:程序博客网 时间:2024/04/30 15:23

图片模糊化处理

[cpp] view plain copy
 在CODE上查看代码片派生到我的代码片
  1. +(UIImage *)scale:(UIImage *)image toSize:(CGSize)size  
  2. {  
  3.     UIGraphicsBeginImageContext(size);  
  4.     [image drawInRect:CGRectMake(0, 0, size.width, size.height)];  
  5.     UIImage *scaledImage = UIGraphicsGetImageFromCurrentImageContext();  
  6.     UIGraphicsEndImageContext();  
  7.     return scaledImage;  
  8. }  
0 0