summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/filters/ImageFilterSaturated.java
blob: d3db4419b8623599883a72d38d53285224b1ffc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

package com.android.gallery3d.filtershow.filters;

import android.graphics.Bitmap;

public class ImageFilterSaturated extends ImageFilter {

    public ImageFilterSaturated() {
        mName = "Saturated";
    }

    native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float saturation);

    public void apply(Bitmap bitmap) {
        int w = bitmap.getWidth();
        int h = bitmap.getHeight();
        int p = mParameter;
        float value = 1 +  p / 100.0f;
        nativeApplyFilter(bitmap, w, h, value);
    }
}