
Blurr 🌁 Easy Blur and Tools Library
Simple and quick solution for blurred bitmaps.
Async or Sync, you can quickly blur your images. The library supports Bitmap, Drawable and CustomViews. You have the opportunity to use the necessary libraries separately. If you encounter an error or problem, please open a issue. It will be fixed as soon as possible. ⚡
Features
- [x] Kotlin
- [x] Rx3
- [x] CustomView to Bitmap (usefull for markers - osm and gmap)
- [x] Blurred Bitmaps
- [x] Drawable to Bitmap
- [x] Application Variants
General Usage
/*** @param bitmapScale should be 0-1f -> small values for more blur* @param blurRadius should be 0-25f -> bigger values for more blur** @exception RSIllegalArgumentException Radius out of range (0 < r <= 25)* @exception NullPointerException void android.graphics.Bitmap.setHasAlpha(boolean)**/funapplyRules(bitmapScale:Float,blurRadius:Float):Blurr{bS=bitmapScalebR=blurRadiusreturnthis}
Convert Drawable to Blurred Bitmap (async)
Blurr.get(this).applyRules(bS,bR).into(resources.getDrawable(R.drawable.test_image),imageViewTrial)//async
Convert Drawable to Blurred Bitmap (sync)
valbitmap2=Blurr.get(this).applyRules(bS,bR).solution(resources.getDrawable(R.drawable.test_image))
Convert View Blurred Bitmap (async)
Blurr.get(this).applyRules(bS,bR).into(view,imageViewTrial)//async
Convert View Blurred Bitmap (sync)
valbitmap1=Blurr.get(this).applyRules(bS,bR).solution(view)
Convert Bitmap to Blurred Bitmap (async)
Blurr.get(this).applyRules(bS,bR).into(bitmap!!,imageViewTrial)//async
Convert Bitmap to Blurred Bitmap (sync)
valbitmap3=Blurr.get(this).applyRules(bS,bR).solution(bitmap!!)
Tools: Bitmap From Custom Views
valbitmap4=Blurr.getTools().bitmapFromCustomView(view)
Tools: Bitmap From Drawable
valbitmap5=Blurr.getTools().bitmapFromDrawable(resources.getDrawable(R.drawable.test_image))
Implementation Gradle
Add it in your root build.gradle at the end of repositories
allprojects{repositories{maven{url'https://jitpack.io'}}}
Add the dependency
dependencies{implementation'com.github.AsynctaskCoffee:BlurryAndroid:beta-0.1'}
Implementation Maven
Add the JitPack repository to your build file
<repositories><repository><id>jitpack.io</id><url>https://jitpack.io</url></repository></repositories>
Add the dependency
<dependency><groupId>com.github.AsynctaskCoffee</groupId><artifactId>BlurryAndroid</artifactId><version>beta-0.1</version></dependency>
Top comments(0)
Subscribe
For further actions, you may consider blocking this person and/orreporting abuse