All Projects → marty-suzuki → SABlurImageViewObjc

marty-suzuki / SABlurImageViewObjc

Licence: MIT license
No description, website, or topics provided.

Programming Languages

objective c
16641 projects - #2 most used programming language
shell
77523 projects
ruby
36898 projects - #4 most used programming language
c
50402 projects - #5 most used programming language

SABlurImageViewObjc

Platform Language Version License

This is Objective-C version of SABlurImageView.

You can use blur effect and it's animation easily to call only two methods.

Features

  • Blur effect with box size
  • Blur animation
  • 0.0 to 1.0 parameter blur

Installation

CocoaPods

SABlurImageView is available through CocoaPods. If you have cocoapods 0.36.0 or greater, you can install it, simply add the following line to your Podfile:

pod "SABlurImageViewObjc"

Manually

Add the SABlurImageViewObjc directory to your project.

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

You have to write #import "SABlurImageView.h".

If you want to apply blur effect for image

	SABlurImageView *imageView = [[SABlurImageView alloc] initWithImage:image];
	[imageView addBlurEffect:30.0f times:1];	

If you want to animate

	SABlurImageView *imageView = [[SABlurImageView alloc] initWithImage:image];
	[imageView configrationForBlurAnimation:100.0f];
	[imageView startBlurAnimation:2.0f];

First time of blur animation is normal to blur. Second time is blur to normal. (automatically set configration of reverse animation)

If you want to use 0.0 to 1.0 parameter

	SABlurImageView *imageView = [[SABlurImageView alloc] initWithImage:image];
	[imageView configrationForBlurAnimation:100.0f];
	[imageView blur:0.5f];

Installation

SABlurImageViewObjc is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "SABlurImageViewObjc"

Requirements

  • Xcode 6.3 or greater
  • iOS7.0(manually only) or greater
  • QuartzCore
  • Accelerate

Author

Taiki Suzuki, [email protected]

License

SABlurImageView is available under the MIT license. See the LICENSE file for more info.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].