使用JColorChooser的圖像顏色我怎麼可以在Java
圖片使用JColorChooser的這樣
到
圖片2
如何更改在Java中
File input = new File("dprocessing.jpg");
image = ImageIO.read(input);
width = image.getWidth();
height = image.getHeight();
for(int i=0; i<height; i++){
for(int j=0; j<width; j++){
Color c = new Color(image.getRGB(j, i));
int red = (int)(c.getRed() * 0.299);
int green = (int)(c.getGreen() * 0.587);
int blue = (int)(c.getBlue() *0.114);
Color newColor = new Color(red+green+blue,red+green+blue,red+green+blue);
image.setRGB(j,i,newColor.getRGB());
}
}
File ouptut = new File("new_Image.jpg");
ImageIO.write(image, "jpg", ouptut);
改變圖像色彩任何幫助將不勝感激...
哪裏是你的代碼? –
對不起,先生,我是新來的,我不能上傳代碼,它說你需要至少10個聲望 – shahzaib
你可以複製並粘貼到你的問題 –