1
0
mirror of https://github.com/wasabeef/glide-transformations.git synced 2025-06-30 05:12:45 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 19 additions and 16 deletions

View File

@ -1,6 +1,15 @@
Change Log
==========
Version 3.2.0 *(2018-04-10)*
----------------------------
Update:
- Support Library 27.0.2 -> 27.1.0
Bug Fix:
- We quit use the RenderScript [#120](https://github.com/wasabeef/glide-transformations/issues/120)
Version 3.1.1 *(2018-02-13)*
----------------------------

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));
```

View File

@ -6,8 +6,8 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.novoda:bintray-release:0.8.0'
classpath 'com.android.tools.build:gradle:3.1.0'
classpath 'com.novoda:bintray-release:0.8.1'
}
}

View File

@ -1,4 +1,4 @@
VERSION_NAME=3.1.1
VERSION_NAME=3.2.0
GROUP=jp.wasabeef
ARTIFACT_ID=glide-transformations
@ -21,6 +21,6 @@ POM_DEVELOPER_EMAIL=dadadada.chop@gmail.com
POM_DEVELOPER_URL=wasabeef.jp
ISSUE_URL=https://github.com/wasabeef/glide-transformations/issues
SUPPORT_PACKAGE_VERSION=27.0.2
SUPPORT_PACKAGE_VERSION=27.1.0
GLIDE_VERSION=4.6.1
GPUIMAGE_VERSION=1.4.1

View File

@ -1,5 +1,6 @@
#Tue Apr 10 02:12:33 JST 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

View File

@ -70,15 +70,7 @@ public class BlurTransformation extends BitmapTransformation {
paint.setFlags(Paint.FILTER_BITMAP_FLAG);
canvas.drawBitmap(toTransform, 0, 0, paint);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) {
try {
bitmap = RSBlur.blur(context, bitmap, radius);
} catch (RSRuntimeException e) {
bitmap = FastBlur.blur(bitmap, radius, true);
}
} else {
bitmap = FastBlur.blur(bitmap, radius, true);
}
bitmap = FastBlur.blur(bitmap, radius, true);
return bitmap;
}

View File

@ -26,6 +26,7 @@ import android.renderscript.ScriptIntrinsicBlur;
* limitations under the License.
*/
@Deprecated
public class RSBlur {
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)