Android Open Source - tomahawk Filter






From Project

Back to project page tomahawk.

License

The source code is released under:

Apache License

If you think the Android project tomahawk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.vandalsoftware.filter;
//from  www . java  2  s .com
import android.graphics.Bitmap;

public class Filter {
    static {
        System.loadLibrary("filter");
    }

    private Filter() {
    }

    public static native void filterBW(Bitmap bitmap);
    public static native void tintBlue(Bitmap bitmap, float intensity);
    public static native void tintRed(Bitmap bitmap, float intensity);
    public static native void invert(Bitmap bitmap);
}




Java Source Code List

com.vandalsoftware.filter.Filter.java
com.vandalsoftware.filter.PhotoFragment.java
com.vandalsoftware.filter.PhotoPagerActivity.java