KO
|
EN
gitlite — search
Search
#php
#javascript
#java
#python
#deprecated
#library
#android
#dotfiles
#ruby
#objective-c
#ios
#go
UIImageBlur
★ 90
Open GitHub ↗
Add the blur effect to UIImage.
Download README (.md)
Explore Similar Repositories
ngx-snake
:
Snake arcade game implemented in Angular 7
react-mobx-router
:
Create React App with React Router 4 and MobX + Internationalization
react-bubble-chart
:
A React+D3 animated bubble chart
clang-server
:
A C/C++ AST index server using libclang and flatbuffers written in Go
CogStack-SemEHR
:
Surfacing Semantic Data from Clinical Notes in Electronic Health Records for Tailored Care, Trial Recruitment and Clinical Research
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
UIImageBlur
?
Download (.md)
# UIImageBlur > Used to blur UIImage * Normal Image  * Half-Blured Image  ``` // get Image UIImage *image = [UIImage imageNamed:@"people"]; // init UIImageView UIImageView *imageView = [[UIImageView alloc] initWithImage:image]; imageView.center = self.view.center; [self.view addSubview:imageView]; // blur Image at specified frame imageView.image = [image blurImageAtFrame:CGRectMake(0, 0, image.size.width, image.size.height / 2.f)]; ``` * Blured Image  ``` // get Image UIImage *image = [UIImage imageNamed:@"people"]; // init UIImageView UIImageView *imageView = [[UIImageView alloc] initWithImage:image]; imageView.center = self.view.center; [self.view addSubview:imageView]; // blur Image imageView.image = [image blurImage]; ```