graphics-samples icon indicating copy to clipboard operation
graphics-samples copied to clipboard

EffectFactory.EFFECT_TINT , issue with Color intensity

Open ShankarKakumani opened this issue 3 years ago • 0 comments

I am trying to apply Tint using EffectFactory.EFFECT_TINT

below is the code I am using

        val hue = effectFactory.createEffect(EffectFactory.EFFECT_TINT)
        hue.setParameter("tint", Color.argb(255, 6, 206, 249)))
        
        

using the above code, tint is getting applied. but I tried giving alpha(0-255) values as 50, 100, 150, and 200. The intensity of the color is always the same.

ShankarKakumani avatar Aug 18 '21 06:08 ShankarKakumani