All Projects → Cutta → Simple-Image-Blur

Cutta / Simple-Image-Blur

Licence: Apache-2.0 license
Simple image blurring for android

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Simple-Image-Blur

Blurberry
Transparent blur using UIVisualEffectView without subclassing
Stars: ✭ 46 (-45.88%)
Mutual labels:  blurview
Blurview
Dynamic iOS-like blur of underlying Views for Android
Stars: ✭ 2,701 (+3077.65%)
Mutual labels:  blurview
react-native-image-blur-shadow
A React Native Image component with Blur Drop Shadows,100% JavaScript, 0 dependency component. Supports Android, iOS and Web. A light weight <Image/> component for your react native project.
Stars: ✭ 80 (-5.88%)
Mutual labels:  blurview
Xamarin.BlurView
Dynamic iOS-like blur of underlying Views for Android.
Stars: ✭ 26 (-69.41%)
Mutual labels:  blurview

Simple-Image-Blur

Simple image blurring for android

Usage

For imageView

    imageview = (ImageView) itemView.findViewById(R.id.imageView);

    BitmapDrawable drawable = (BitmapDrawable) imageview.getDrawable();
    Bitmap bitmap = drawable.getBitmap();
    Bitmap blurred = blurRenderScript(bitmap, radiusArr[position]);//second parametre is radius
    imageview.setImageBitmap(blurred);        

SS

Credits

License

Copyright 2015 Cüneyt Çarıkçi,Serhat Sürgüveç

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].