Skip to content

Instantly share code, notes, and snippets.

View dka09's full-sized avatar

Dimitris Karittevlis dka09

View GitHub Profile
package com.bskyb.fbscore.util;
import android.graphics.Bitmap;
public class FastBlur {
public static Bitmap doBlur(Bitmap sentBitmap, int radius, boolean canReuseInBitmap) {
// Stack Blur v1.0 from
// http://www.quasimondo.com/StackBlurForCanvas/StackBlurDemo.html
//