My requirement is to load multiple Effect on bitmap. I am following apply-effects-on-image-using-effects for it. I got success for applying the effect but My requirements is to give brightness effect separately. That means user can able to give Brightness effect after applying any other effect without saving the file.
I know that after saving file and render that file again makes it possible. But i need it without saving image file.
Right now, if i apply Brightness on any applied effect the applied effect is gone and Brightness shows its effect. It because of the below code:
mEffect = effectFactory.createEffect(EffectFactory.EFFECT_BRIGHTNESS);
Here, mEffect is always initialize to give the new effect on texture. Without that i am not able to load the effect.
So, My question is, how to load multiple effect on same texture without saving it.