Back to project page ImageBlurring.
The source code is released under:
Apache License
If you think the Android project ImageBlurring listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.qiujuer.imageblurring.jni; // ww w. j a v a 2 s . c o m import android.graphics.Bitmap; /** * Created by Qiujuer * on 2014/4/19. */ public class ImageBlur { public static native void blurIntArray(int[] pImg, int w, int h, int r); public static native void blurBitMap(Bitmap bitmap, int r); static { System.loadLibrary("ImageBlur"); } }