erolerme
Results
1
comments of
erolerme
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); ```