Tag archives for Image

Android

Create a Blur Effect on Android with RenderScript

In image processing, a Blur Effect, also known as Gaussian Blur, is the result of blurring an image by applying a Gaussian function. The Blur Effect is widely used in graphics software. In that tutorial, you're going to learn how to apply a Blur Effect on Android by using the RenderScript Library. You can also enjoy this tutorial in video…
Continue Reading
Android

Enjoy the power of Universal Image Loader to load easily your images on Android

Recently, we have presented you Glide, a great library recommended by Google to load easily images on Android. It offers you some interesting features out of the box like disk and memory caching for example. Today, we’re going to present you a direct concurrent of Glide : Universal Image Loader. Universal Image Loader has been created to provide a powerful,…
Continue Reading
Android

Load your images with Glide, the Image Loader Library for Android, recommended by Google

During your Android developments, it’s almost sure you have already loaded images from the Web for your application. To achieve that, you can use the classic HttpUrlConnection based stack. This solution is functional but you will need some efforts to make fast calls and add some caching features. Better solution is probably to use an Image Loader Library that offers…
Continue Reading