-
-
Save peterkuterna/9207436 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.content.Context; | |
import android.graphics.Bitmap; | |
import android.renderscript.Allocation; | |
import android.renderscript.Element; | |
import android.renderscript.RenderScript; | |
import android.renderscript.ScriptIntrinsicBlur; | |
import com.squareup.picasso.Transformation; | |
public class BlurTransform implements Transformation { | |
RenderScript rs; | |
public BlurTransform(Context context) { | |
super(); | |
rs = RenderScript.create(context); | |
} | |
@Override | |
public Bitmap transform(Bitmap bitmap) { | |
// Create another bitmap that will hold the results of the filter. | |
Bitmap blurredBitmap = Bitmap.createBitmap(bitmap); | |
// Allocate memory for Renderscript to work with | |
Allocation input = Allocation.createFromBitmap(rs, bitmap, Allocation.MipmapControl.MIPMAP_FULL, Allocation.USAGE_SCRIPT); | |
Allocation output = Allocation.createTyped(rs, input.getType()); | |
// Load up an instance of the specific script that we want to use. | |
ScriptIntrinsicBlur script = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs)); | |
script.setInput(input); | |
// Set the blur radius | |
script.setRadius(10); | |
// Start the ScriptIntrinisicBlur | |
script.forEach(output); | |
// Copy the output to the blurred bitmap | |
output.copyTo(blurredBitmap); | |
bitmap.recycle(); | |
return blurredBitmap; | |
} | |
@Override | |
public String key() { | |
return "blur"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment