如何修复"坐标超出范围#34;我的代码在Java中出错?

时间:2014-04-02 21:42:09

标签: java coordinates bounds

这是我的代码的样子。我收到一个错误,上面写着"线程中的异常" 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(); 
}
}

2 个答案:

答案 0 :(得分:0)

我猜它是

pic.setColor(w, h, r, g, 0);

你正在迭代x,但不是在for removeBlue中的for循环中使用x。

坐标(w,h)可能超出范围,这是错误所声称的

答案 1 :(得分:0)

在致电setColor时,xy值(方法调用的前两个参数)是坐标。这些坐标必须位于您尝试修改的Picture设置的范围内:

  • 如果Picture的宽度为w,则x坐标的范围为[0 ... w - 1]

  • 如果Picture的高度为h,则y坐标的范围为[0 ... h - 1],包含在内。

&#34;协调超出范围&#34;消息说坐标(即xy值)不在相应的范围内。

例如,你这样做:

    int h = pic.height();
    int w = pic.width();
    // ...
    pic.setColor(w, h, r, g, 0);

X轴上的边界为0w - 1,但您提供的x值为w。 Y轴上的边界为0h - 1,但您提供的y值为h。 (在您的代码中还有其他地方可以解决此类错误。)


  

我不知道这意味着什么或如何解决它,所以非常感谢任何帮助。

  1. 阅读并理解上述说明。
  2. 查看您要拨打的地方setColor,并分析您使用的xy值是否在边界内。
  3. 如有必要,请更改代码。
  4. 测试......并根据需要重复前面的步骤。