JMagick - 如何改变亮度和对比度?

时间:2015-03-28 03:51:26

标签: java jmagick

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

1 个答案:

答案 0 :(得分: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");
相关问题