AndroidPhotoFilters icon indicating copy to clipboard operation
AndroidPhotoFilters copied to clipboard

UnsatisfiedLinkError

Open devilabhi opened this issue 8 years ago • 4 comments

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 avatar Dec 15 '16 09:12 devilabhi

@devilabhi Hi,I met this problem too,do u have any workaround?

zjutkz avatar Dec 24 '16 10:12 zjutkz

I didn't get soln

devilabhi avatar Jan 19 '17 08:01 devilabhi

You need to add

static {
        System.loadLibrary("NativeImageProcessor");
}

dwillmc avatar May 08 '17 23:05 dwillmc

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);

erolerme avatar Nov 13 '17 14:11 erolerme