AndroidPhotoFilters
AndroidPhotoFilters copied to clipboard
UnsatisfiedLinkError
Hi, I am getting error http://paste.ubuntu.com/23632674/ and the code I used is http://paste.ubuntu.com/23632670/ Please check out this error and help in achieving task Thank you
@devilabhi Hi,I met this problem too,do u have any workaround?
I didn't get soln
You need to add
static {
System.loadLibrary("NativeImageProcessor");
}
You need mutable Bitmap.
BitmapFactory.Options options = new BitmapFactory.Options();
options.inMutable=true;
bmp = BitmapFactory.decodeFile(filePath,options);
Filter fooFilter = SampleFilters.getBlueMessFilter();
Bitmap outputImage = fooFilter.process(bmp);