0

I want to change the brightness and contrast of an image by using jmagick.

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

1 Answers1

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