UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];UIVisualEffectView *effectview = [[UIVisualEffectView alloc] initWithEffect:...
分类:
其他好文 时间:
2015-01-07 22:06:07
阅读次数:
194
废话不多说,先来看看没有蒙版的效果,再来看看有蒙版的效果,明显可以看出有明显的区别。先说说实现的的思路:当程序即将进入后台时,把当前屏幕截个图,此时要将图片毛玻璃化,并作为UIImageView的image,然后将imageView放在window的最上面,等即将进入前台时移除毛玻璃蒙版。下面就来说...
分类:
其他好文 时间:
2014-12-09 17:23:45
阅读次数:
214
/*
This program will generate
"diffuse or groundglass " effect.
*/
#include "PS_Algorithm.h"
#include
using namespace std;
using namespace cv;
int main(void)
{
string Img_name("4.jpg");...
分类:
其他好文 时间:
2014-11-21 16:14:51
阅读次数:
539
转自:http://prolove10.blog.163.com/blog/static/138411843201391401054305/原图:效果图:实现:首先需要导入Accelerate.framework。然后把两个文件加入到自己的项目中即可。UIImage+ImageEffects.h#i...
分类:
移动开发 时间:
2014-10-26 16:57:45
阅读次数:
254
%%% Diffuse
%%% 扩散效果
clc;
clear all;
addpath('E:\PhotoShop Algortihm\Image Processing\PS Algorithm');
Image=imread('4.jpg');
Image=double(Image);
size_info=size(Image);
height=...
分类:
其他好文 时间:
2014-10-23 12:29:17
阅读次数:
226
随着iOS8.0和OS X 10.0的发布,大量的毛玻璃效果随处可见.
以前我们实现毛玻璃效果,更多是通过CGImage来实现.现在,XCode6中自带了实现这一效果的API.API如下:
typedef NS_ENUM(NSInteger, UIBlurEffectStyle) {
UIBlurEffectStyleExtraLight,
UIBlurEffectSty...
分类:
移动开发 时间:
2014-10-09 15:26:58
阅读次数:
192
//加模糊效果,image是图片,blur是模糊度 - (UIImage *)blurryImage:(UIImage *)image withBlurLevel:(CGFloat)blur { ? ? //模糊度, ? ? if ((blur < 0.1f) || (blur > 2.0f)) { ? ? ? ? blur = 0.5f;...
分类:
移动开发 时间:
2014-10-09 12:40:08
阅读次数:
189
自从iOS系统引入了Blur效果,也就是所谓的毛玻璃、...
分类:
移动开发 时间:
2014-10-09 01:59:27
阅读次数:
285