Popularity
8.4
Declining
Activity
0.0
Stable
2,508
82
483

Description

PhotoFiltersSDK aims to provide fast, powerful and flexible image processing instrument for creating awesome effects on any image media.

Library supports OS on API 15 and above.

Code Quality Rank: L4
Programming language: Java
License: Apache License 2.0
Tags: Media     Photo     Photo Filters     Image Processing    
Latest version: v1.0.2

PhotoFiltersSDK alternatives and similar packages

Based on the "Media" category.
Alternatively, view PhotoFiltersSDK alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of PhotoFiltersSDK or a related project?

Add another 'Media' Package

README

PhotoFiltersSDK

License Android Arsenal

PhotoFiltersSDK aims to provide fast, powerful and flexible image processing instrument for creating awesome effects on any image media.

Library supports OS on API 15 and above.

[PhotoFilters gif](art/photofilters.gif)

Features

PhotoFiltersSDK processes filter on any Image within fraction of second since processing logic is in NDK. At present following image filters are included:

Library also comes with inbuilt Sample Filters (Refer [SampleFitlers.java](photofilterssdk/src/main/java/com/zomato/photofilters/SampleFilters.java)). Implementation is straightforward:

Filter fooFilter = SampleFilters.getBlueMessFilter();
Bitmap outputImage = fooFilter.processFilter(inputImage);

Implementation

Adding Dependency

Simply add Dependency on artifact in your build.gradle :

dependencies {
    compile 'com.github.zomato:androidphotofilters:1.0.2'
    ...

OR

Copy|Paste photofilterssdk from the repo to your project and include photofiltersdk in your settings.gradle like this :

include ':photofilterssdk'

Add dependency in your build.gradle :

compile project(':photofilterssdk')

Usage

Load native library in your activity :

public class MainActivity extends AppCompatActivity {
    static
    {
        System.loadLibrary("NativeImageProcessor");
    }
    ...

then

Filter myFilter = new Filter();
myFilter.addSubFilter(new BrightnessSubFilter(30));
myFilter.addSubFilter(new ContrastSubFilter(1.1f));
Bitmap outputImage = myFilter.processFilter(inputImage);

Above code snippet will give you outputImage with increased brightness and contrast. You can further refer [example project](example).

Documentation

Although there are few inbuilt filters already present, you may want to create and customize one specific to your need and show your creativity. For that you would require to know how all the Subfilters can be used. Let me take you through all of them.

ToneCurveSubfilter

This is most awesome filter present in this library which differentiates PhotoFiltersSDK from other image processing libraries out there. ToneCurveSubFilter applies the changed RGB Channel curve to create effect on image.

[CurveDialog](art/curvedialog_photoshop.png)

Here is the code snippet the apply the above RGB curve on an image :

Filter myFilter = new Filter();
Point[] rgbKnots;
rgbKnots = new Point[3];
rgbKnots[0] = new Point(0, 0);
rgbKnots[1] = new Point(175, 139);
rgbKnots[2] = new Point(255, 255);

myFilter.addSubFilter(new ToneCurveSubfilter(rgbKnots, null, null, null));
Bitmap outputImage = myFilter.processFilter(inputImage);

The results are nearly same as we would see in photoshop and other tools. We can also specify knots for Red, Green and Blue channels (in the ToneCurveSubfilter's constructor).

SaturationSubfilter

This fitler can be used to tweak color saturation of an image. Here is the example :

Filter myFilter = new Filter();
myFilter.addSubFilter(new SaturationSubfilter(1.3f));
Bitmap outputImage = myFilter.processFilter(inputImage);

SaturationSubfilter takes float as an argument and has no effect for value 1.

ColorOverlaySubfilter

Increases the specified red, green and blue values for each pixel in an image.

Filter myFilter = new Filter();
myFilter.addSubFilter(new ColorOverlaySubfilter(100, .2f, .2f, .0f));
Bitmap outputImage = myFilter.processFilter(inputImage);

ContrastSubfilter

To change the contrast levels of an image use this filter :

Filter myFilter = new Filter();
myFilter.addSubFilter(new ContrastSubfilter(1.2f));
Bitmap outputImage = myFilter.processFilter(inputImage);

ContrastSubfilter takes float as an argument where value 1 has no effect on the image.

BrightnessSubfilter

As the name suggest, this filter is used for changing brightness levels :

Filter myFilter = new Filter();
myFilter.addSubFilter(new BrightnessSubfilter(30));
Bitmap ouputImage = myFilter.processFilter(inputImage);

BrightnessSubfilter takes int as an argument where value 0 has no effect. Negative values can be used to decrease brightness of the image.

VignetteSubfilter

This filter can be used to put vignette effect on the image.

Filter myFilter = new Filter();
myFilter.addSubFilter(new VignetteSubfilter(context, 100));
Bitmap outputImage = myFilter.processFilter(inputImage);

VignetteSubfilter takes int as an argument whoes value ranges from 0-255, which defines intesity of the vignette effect.

Proguard

If you are using proguard, consider adding the following to your proguard rules:

-keep class com.zomato.photofilters.** {*;}
-keepclassmembers  class com.zomato.photofilters.** {*;}

License

This library falls under [Apache v2](LICENSE)


*Note that all licence references and agreements mentioned in the PhotoFiltersSDK README section above are relevant to that project's source code only.