0

我想通过使用 jmagick 来改变图像的亮度和对比度。

4

1 回答 1

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");
于 2015-03-28T07:05:44.957 回答