How to change image brightness in JLabel?

I have an image imported into JLabel. Is there a built-in function in Java that I can use to change the brightness and contrast of this image using the slider?

+6
source share
1 answer

You can try the RescaleOp class (incremental scaling).

+7
source

Source: https://habr.com/ru/post/896624/


All Articles