All Projects → egslava → Blurredimageview

egslava / Blurredimageview

Licence: apache-2.0
Blurred ImageView for your android designes

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Blurredimageview

Circular Music Progressbar
Beautiful Circular Progress Bar with album art for android
Stars: ✭ 813 (+984%)
Mutual labels:  imageview
Dali
Dali is an image blur library for Android. It contains several modules for static blurring, live blurring and animations.
Stars: ✭ 1,021 (+1261.33%)
Mutual labels:  blur
Vimage
A simplistic image viewer for Windows, inspired by vjpeg.
Stars: ✭ 63 (-16%)
Mutual labels:  imageview
Lmdropdownviewswift
LMDropdownViewSwift is a simple dropdown view inspired by Tappy.
Stars: ✭ 18 (-76%)
Mutual labels:  blur
Googlemapview
android google map view - imageView to make the map display process easier by entering latitude and longitude only by static map
Stars: ✭ 36 (-52%)
Mutual labels:  imageview
Androidsvgloader
Android library for load svg from internet to imageview
Stars: ✭ 52 (-30.67%)
Mutual labels:  imageview
Dynamicblurview
DynamicBlurView is a dynamic and high performance UIView subclass for Blur.
Stars: ✭ 792 (+956%)
Mutual labels:  blur
Ariana
Provide Multiple Gradients in ImageViews and Texts. Integrate with ViewPager to change colors dynamically.
Stars: ✭ 74 (-1.33%)
Mutual labels:  imageview
Rwidgethelper
Android UI 快速开发,专治原生控件各种不服
Stars: ✭ 996 (+1228%)
Mutual labels:  imageview
Blur
Extension to UIView to apply blur/vibrant effect. Written in Swift.
Stars: ✭ 63 (-16%)
Mutual labels:  blur
Blur desktop
纯html实现类似mac os 动态高斯模糊效果
Stars: ✭ 9 (-88%)
Mutual labels:  blur
Translucenttb
A lightweight utility that makes the Windows taskbar translucent/transparent.
Stars: ✭ 8,816 (+11654.67%)
Mutual labels:  blur
X Postprocessing Library
Unity Post Processing Stack Library | Unity引擎的高品质后处理库
Stars: ✭ 1,079 (+1338.67%)
Mutual labels:  blur
Pesdk Ios Examples
A fully customizable photo editor for your app.
Stars: ✭ 837 (+1016%)
Mutual labels:  blur
Obs Streamfx
StreamFX is a plugin for OBS Studio which adds many new effects, filters, sources, transitions and encoders - all for free! Be it 3D Transform, Blur, complex Masking, or even custom shaders, you'll find it all here.
Stars: ✭ 1,128 (+1404%)
Mutual labels:  blur
Visualeffectview
Dynamic blur background view with tint color (UIVisualEffectView subclass) 📱
Stars: ✭ 795 (+960%)
Mutual labels:  blur
Dragphotoview
仿微信图片展示
Stars: ✭ 46 (-38.67%)
Mutual labels:  imageview
Android Circular Progress
Android custom view that loads a circular progress indicator using ImageView or FrameLayout
Stars: ✭ 75 (+0%)
Mutual labels:  imageview
Final Form Focus
🏁 Final Form "decorator" that will attempt to apply focus to the first field with an error upon an attempted form submission
Stars: ✭ 71 (-5.33%)
Mutual labels:  blur
Blurry
🌫 Image Blurring in Swift
Stars: ✭ 56 (-25.33%)
Mutual labels:  blur

BlurredImageView

Blurred ImageView for your android designs.

This project uses Manabu-GT EtsyBlur project for applying fast blur on ImageViews in your android application. While Manabu-GT is used for bluring Bitmaps that project provides easy integration with bluring ImageViews in your Android App this library gives you a super simple integrations with blurred ImageViews.

EtsyBlur

EtsyBlur is an Android library that allows developers to easily add a glass-like effect implemented in the Etsy app.

Quick Demo

Requirements

API Level 8 (Froyo) and above.

Setup

The library is pushed to Maven Central as an AAR, so you just need to add the followings to your build.gradle file:

dependencies {
    compile 'ru.egslava:blurredview:1.0'
}

android {
    defaultConfig {
        renderscriptTargetApi 22
        renderscriptSupportMode true
    }
}

Usage

<ru.egslava.blurredview.BlurredImageView
    ...
    android:src="@drawable/..."
    app:radius="0.3"
    app:keepOriginal="true"
    app:downSampling="2" />
  • radius - "blureness" [0..1]
  • keepOriginal - (default false). if set to false you can't make image sharper if you change radius to less value. If it set to false every time you change radius it will blur already blured image. If keepOriginal set to true it will blur original instead of blurred image. Of course to keep original you need more memory so if you need to have just statially blurred image just keep it with default value.

License

 Copyright 2015 Viacheslav Egorenkov

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].