我正在开发一个将图像转换为灰度的项目,我想将源文件更改为用户输入。
这是我正在使用的代码
import java.io.File;
import java.io.IOException;
import java.awt.image.BufferedImage;
import javax.imageio.ImageIO;
public class GrayScale{
public static void main(String args[])throws IOException{
BufferedImage img = null;
File f = null;
try{
f = new File("F:\\test\\test.jpg");
img = ImageIO.read(f);
}catch(IOException e){
System.out.println(e);
}
int width = img.getWidth();
int height = img.getHeight();
for(int y = 0; y < height; y++){
for(int x = 0; x < width; x++){
int p = img.getRGB(x,y);
int a = (p>>24)&0xff;
int r = (p>>16)&0xff;
int g = (p>>8)&0xff;
int b = p&0xff;
int avg = (r+g+b)/3;
p = (a<<24) | (avg<<16) | (avg<<8) | avg;
img.setRGB(x, y, p);
}
}
try{
f = new File("F:\\test\\Output.jpg");
ImageIO.write(img, "jpg", f);
}catch(IOException e){
System.out.println(e);
}
}
}
所以我想要一种方法来改变输入和输出的try catch方法,由用户指定而非标准 在此先感谢