1
0
mirror of https://github.com/wasabeef/glide-transformations.git synced 2025-12-22 18:30:02 +08:00

Deprecated RSBlur (#124)

This commit is contained in:
Daichi Furiya
2018-04-10 03:05:28 +09:00
committed by GitHub
parent 0361d97018
commit 81e72fc553
7 changed files with 19 additions and 16 deletions

View File

@@ -32,7 +32,7 @@ repositories {
}
dependencies {
implementation 'jp.wasabeef:glide-transformations:3.1.1'
implementation 'jp.wasabeef:glide-transformations:3.2.0'
// If you want to use the GPU Filters
implementation 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.4.1'
}
@@ -44,7 +44,7 @@ Set Glide Transform.
```java
Glide.with(this).load(R.drawable.demo)
.apply(bitmapTransform(new BlurTransformation(25)))
.apply(bitmapTransform(new BlurTransformation(25, 3)))
.into((ImageView) findViewById(R.id.image));
```