使用Glide實現毛玻璃的效果
阿新 • • 發佈:2019-01-01
最近專案中需要用到一個介面中獲取到的圖片作為當前activity的背景圖片,並且圖片的效果需要是毛玻璃效果。懷著直接使用輪子的心情於是到github上查詢輪子,終於找到了。
步驟1.引用庫
repositories { jcenter() } dependencies { compile 'jp.wasabeef:glide-transformations:3.0.1' // If you want to use the GPU Filters compile 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.4.1'步驟2. 使用Glide轉換}
Glide.with(this).load(R.drawable.demo) .apply(bitmapTransform(new BlurTransformation(25))) .into((ImageView) findViewById(R.id.image));
另外值得一提的是還可以進行組合轉換如下:
MultiTransformation multi = new MultiTransformation( new BlurTransformation(25), new RoundedCornersTransformation(128, 0, RoundedCornersTransformation.CornerType.BOTTOM)))) Glide.with(this).load(R.drawable.demo) .apply(bitmapTransform(multi)) .into((ImageView) findViewById(R.id.image));
轉換可以有各種情況:
Crop
CropTransformation
, CropCircleTransformation
, CropSquareTransformation
, RoundedCornersTransformation
Color
ColorFilterTransformation
, GrayscaleTransformation
Blur
BlurTransformation
Mask
MaskTransformation
讀者可在github上進行專案檢視,連結:https://github.com/wasabeef/glide-transformations
另:如果你使用的是Picasso或Fresco也可以實現相同的效果,同樣已有輪子