Skip to content
Blurry is an easy blur library for Android
Java Kotlin
Branch: master
Clone or download

Latest commit

Latest commit 8768848 Nov 19, 2018

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github add github templates Nov 19, 2018
.idea update idea settings Nov 19, 2018
art update logo Jul 25, 2015
blurry remove renderscript Nov 19, 2018
example remove renderscript Nov 19, 2018
gradle/wrapper update gradle settings Nov 19, 2018
.gitignore update ignore Nov 19, 2018
CHANGELOG.md bump up to 3.0.0 Nov 19, 2018
LICENSE Initial commit Jul 23, 2015
README.md bump up to 3.0.0 Nov 19, 2018
build.gradle remove renderscript Nov 19, 2018
gradle.properties update gradle settings Nov 19, 2018
gradlew update gradle settings Nov 19, 2018
gradlew.bat update gradle wrapper Mar 21, 2017
settings.gradle create project Jul 24, 2015

README.md

Android Arsenal License Download

Blurry is an easy blur library for Android.

logo

Screenshot

Demo

How do I use it?

Setup

Dependencies
dependencies {
    compile 'jp.wasabeef:blurry:3.x.x'
}

Functions

Overlay

Parent must be ViewGroup

Blurry.with(context).radius(25).sampling(2).onto(rootView)

Into

// from View
Blurry.with(context).capture(view).into(imageView)
// from Bitmap 
Blurry.with(context).from(bitmap).into(imageView)

Blur Options

  • Radius
  • Down Sampling
  • Color Filter
  • Asynchronous Support
  • Animation (Overlay Only)
Blurry.with(context)
  .radius(10)
  .sampling(8)
  .color(Color.argb(66, 255, 255, 0))
  .async()
  .animate(500)
  .onto(rootView);

Requirements

Android 3.+ (API 14)

Developed By

Daichi Furiya (Wasabeef) - dadadada.chop@gmail.com

Follow me on Twitter

License

Copyright 2018 Wasabeef

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
You can’t perform that action at this time.