I want to change the brightness and contrast of an image by using jmagick.
Asked
Active
Viewed 228 times
1 Answers
1
ImageInfo i = new ImageInfo("digits.jpg");
MagickImage m = new MagickImage(i);
//Modulates the hue, saturation, and brightness of an image.
m.modulateImage("70,100,100");

Aung Myat Hein
- 4,018
- 1
- 36
- 42