Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过使用 jmagick 来改变图像的亮度和对比度。
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");