From c914548296d93be186d4b1deae329124b72db55a Mon Sep 17 00:00:00 2001 From: wasabeef Date: Fri, 24 Jul 2015 18:17:22 +0900 Subject: [PATCH] update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1b94e8c..2115fc4 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ repositories { } dependencies { - compile 'jp.wasabeef:glide-transformations:1.0.7@aar' + compile 'jp.wasabeef:glide-transformations:1.0.8@aar' compile 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.2.3@aar' } ``` @@ -54,7 +54,7 @@ You can set a multiple transformations. ```java BitmapPool pool = Glide.get(this).getBitmapPool(); Glide.with(this).load(R.drawable.demo).bitmapTransform( - new BlurTransformation(this, pool, 5), new CropCircleTransformation(pool)) + new BlurTransformation(this, pool, 25, 2), new CropCircleTransformation(pool)) .into((ImageView) findViewById(R.id.image)); ```