Back to project page app-gkplayer-android.
The source code is released under:
Apache License
If you think the Android project app-gkplayer-android 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 com.roamtouch.gesturekit.gkplayer.graphics; //from ww w.java 2 s . c o m import android.graphics.Bitmap; public class Blur { static{ System.loadLibrary("Blur"); } public native static void functionToBlur(Bitmap in, Bitmap out, int radius); }