android-stackblur icon indicating copy to clipboard operation
android-stackblur copied to clipboard

Android StackBlur is a library that can perform a blurry effect on a Bitmap based on a gradient or radius, and return the result. The library is based on the code of Mario Klingemann.

Results 13 android-stackblur issues
Sort by recently updated
recently updated
newest added

It would be nice to have the library uploaded to maven central, and just import it via gradle! Thanks mate!

SurfaceView is not supported on many libs.They just get a bitmap by activity cutting ,then they blur this bitmap. However it is not work on SurfaceView.Others get blur bitmap by...

I had a problem when I use Robolectric tests. Two of my test use this library but sometimes one of them works and sometimes any works. Gradle: `compile 'com.commit451:NativeStackBlur:1.0.2'` Here...

For Faster process of Blur Image I want to use below function StackBlurManager stackBlurManager = new StackBlurManager(bitmapFromGalleryOrCamera); stackBlurManager.processNatively(25); whenever I use above method .processNatively I am getting following errror `...

use native methon,the picture exit border line ![aaaaa](https://cloud.githubusercontent.com/assets/5811097/17165656/844b6058-5404-11e6-958e-ab1f7b3366bb.jpg)

Please find the logs. E/AndroidRuntime(11680): Caused by: java.lang.OutOfMemoryError: Failed to allocate a 26214412 byte allocation with 13777168 free bytes and 13MB until OOM E/AndroidRuntime(11680): at dalvik.system.VMRuntime.newNonMovableArray(Native Method) E/AndroidRuntime(11680): at android.graphics.Bitmap.nativeCreate(Native...

When I try to run my app on Nexus 9 with NativeStackBlur dependency, I get the following exception: UNCAUGHT EXCEPTION (main). Force logging out.: java.lang.Exception: java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/BLA.dev-2/base.apk"],nativeLibraryDirectories=[/data/app/BLA.dev-2/lib/arm64, /vendor/lib64,...

when I clean the library using the eclipse ,some errors appear in file blur.rs。 like this: error: Non-root compute kernel blur_v() is not supported in SDK levels 11-15 warning: implicit...

Hi, I believe the following code is causing my app to crash on some devices: ``` StackBlurManager stackBlurManager = new StackBlurManager(normalBitmap); blurredBitmap = stackBlurManager.processNatively(100); ``` I can't know for sure...