• Stars
    star
    504
  • Rank 87,537 (Top 2 %)
  • Language
    Java
  • License
    MIT License
  • Created about 8 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

🎩 An easy and fast library to apply gaussian blur filter on any images.

Get it on Google Play

Gaussian Blur

This is an Android project. Easy and simple library to apply gaussian blur filter on images. The library lets you apply a gaussian blur filter on any images very fast because the image will be scaled down before apply the filter. Doing it asynchronous or not.


JitPak Android Arsenal MaterialUp

Sample app

Please check the sample app and feel free to help with a pull request. It's located here.

Appetize.io Demo Codacy Badge API

Setup

Step #1. Add the JitPack repository to your build file:

allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}

Step #2. Add the dependency (See latest release).

dependencies {
    compile 'com.github.jrvansuita:GaussianBlur:+'
}

Step #3. Add the below lines on app module build.gradle file.

defaultConfig {
    ...
    renderscriptTargetApi 19
    renderscriptSupportModeEnabled true
}

Implementation

//Synchronous blur
Bitmap blurredBitmap = GaussianBlur.with(context).render(R.mipmap.your_image);
imageView.setImageBitmap(blurredBitmap);
   
//Asynchronous blur
GaussianBlur.with(context).put(R.mipmap.your_image, imageView);

//Asynchronous with scaleDown and changing radius
GaussianBlur.with(context).size(300).radius(10).put(R.mipmap.your_image, imageView);

Instagram Github Google Play Store E-mail

More Repositories

1

MaterialAbout

πŸ”– It's a material-design about screen to use on your Android apps. A developer profile and application information easy to integrate.
Java
1,524
star
2

PickImage

πŸ“Έ πŸ–ΌοΈ Shows a DialogFragment with camera and gallery options. User can choose which provider wants to pick images from.
Java
469
star
3

CheckNewAppVersionAvailable

It makes a request to Play Store to check if there is a new version of your published app
Java
73
star
4

IconHandler

πŸ‘“ Tint you Icons, change the size, apply alpha color and set a position easily.
Java
67
star
5

SQLiteHelper

πŸ—„ This project comes in handy when you want to write a sql statement easily and smarter.
Java
58
star
6

ShoppingList

πŸ“ My very first Android app, a shopping list app.
Java
17
star
7

crime-pay

πŸ•Ή Police And Thief P2E Game
JavaScript
14
star
8

InscricoesBR

Essa classe ajuda vocΓͺ a fazer a formatação de CNPJ, CPF, CEP e Telefones.
Java
12
star
9

password-vault

πŸ” Manage passwords, emails, credentials and notes. All on a safe, personal and synced vault.
Java
2
star
10

RxJava3

Learning more about RX Java 3 πŸ‘¨β€πŸ«
Kotlin
2
star
11

view-binding

πŸ–‡ This is an Android library. It makes your life easier by reducing boilerplate code and avoiding typecasting and redundant lines of code when using View Binding
Kotlin
2
star
12

MyDesignPatterns

Kotlin
1
star
13

SolidKotlin

SOLID study using Kotlin πŸ‘¨β€πŸ«
Kotlin
1
star
14

git-commands

a bunch of git commands from basics to advanced ones.
1
star
15

DreamShop

This is a project from Vanhackathon 2.0 (October 2016) and was created for the challenges of Dreamify and Shopify.
Java
1
star