这是我的代码的样子。我收到一个错误,上面写着"线程中的异常" main" java.lang.arrayIndexOutofBoundsException:协调越界!" 我不知道这意味着什么或如何解决它,所以非常感谢任何帮助。
import java.awt.Color;
public class Assignment9 {
/**
* @param args
* @return
*/
public static void removeBlue(Picture pic){
Color cPic = pic.get(100,100);
//remove blue color pane from image, set blue weight to 0
int h = pic.height();
int w = pic.width();
System.out.println(cPic);
//^this shows the red, green, and blue weights
int b = cPic.getBlue();
int r = cPic.getRed();
int g = cPic.getGreen();
System.out.println("r=" +r +"g="+g+"b="+b);
pic.setColor(w, h, r, g, 0);
for(int x=0; x<w ; x++){
//need to set color
pic.setColor(w, h, r, g, 0);}
}
public static void drawredStripe(Picture pic){
//draw a red vertical stripe that is 200 pixels wide through the middle of the image
Color cPic = pic.get(100,100);
int h = pic.height();
int w = pic.width();
int b = cPic.getBlue();
int r = cPic.getRed();
int g = cPic.getGreen();
for(int x=0; x<h ; x++){
for (int y = (w/2)-100; y <(w/2)+100; y++){
//need to set color
pic.setColor(x, y, r, 0, 0);
}
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Picture dolphin= new Picture("dolphin_swimming.jpg");
removeBlue(dolphin);
dolphin.show();
drawredStripe(dolphin);
dolphin.show();
}
}
答案 0 :(得分:0)
我猜它是
pic.setColor(w, h, r, g, 0);
你正在迭代x,但不是在for removeBlue中的for循环中使用x。
坐标(w,h)可能超出范围,这是错误所声称的
答案 1 :(得分:0)
在致电setColor
时,x
和y
值(方法调用的前两个参数)是坐标。这些坐标必须位于您尝试修改的Picture
设置的范围内:
如果Picture
的宽度为w
,则x
坐标的范围为[0 ... w - 1]
。
如果Picture
的高度为h
,则y
坐标的范围为[0 ... h - 1]
,包含在内。
&#34;协调超出范围&#34;消息说坐标(即x
和y
值)不在相应的范围内。
例如,你这样做:
int h = pic.height();
int w = pic.width();
// ...
pic.setColor(w, h, r, g, 0);
X轴上的边界为0
到w - 1
,但您提供的x
值为w
。 Y轴上的边界为0
到h - 1
,但您提供的y
值为h
。 (在您的代码中还有其他地方可以解决此类错误。)
我不知道这意味着什么或如何解决它,所以非常感谢任何帮助。
setColor
,并分析您使用的x
和y
值是否在边界内。