In many applications we need to manipulate image in Android as per need. And for that we need to give some extra effort but not after today Android Photofilter library can make your work more easy.
This is a simple easy to use library that lets you edit pictures on the fly with easy. Photo filter lets you apply a large number of filters all while maintaining maximum image quality. Supports Android 2.3 and higher.
How to integrate Android Photofilter Library into your app?
Integrating the library into you app is extremely easy. A few changes in the build gradle and your all ready to use the library. Make the following changes.
Step 1. Add the JitPack repository to your build file. Add it in your root build.gradle at the end of repositories:
allprojects { repositories { ... maven { url "https://jitpack.io" } } }
Step 2. Add the dependency
dependencies { compile 'com.github.mukeshsolanki:photofilter:1.0.2' }
How to use the Android Photofilter Library?
Okay seems like you integrated the library in your project but how do you use it? Well its really easy just follow the steps below.
ImageProcessor imageProcessor = new ImageProcessor(); imageProcessor.doInvert(bitmap);
That’s pretty much it and your all wrapped up.
Supported Filters (Exposed Methods)
- doHighlightImage
- doInvert
- doGreyScale
- doGamma
- doColorFilter
- createSepiaToningEffect
- decreaseColorDepth
- createContrast
- rotate
- doBrightness
- applyGaussianBlur
- createShadow
- sharpen
- applyMeanRemoval
- smooth
- emboss
- engrave
- boost
- roundCorner
- waterMark
- flip
- tintImage
- applyFleaEffect
- applyBlackFilter
- applySnowEffect
- applyShadingFilter
- applySaturationFilter
- applyHueFilter
- applyReflection
- replaceColor
Screenshots
Original
Result
Hope you like this library. Please share this post and comment us.
Share your thoughts