8

画像を取得して、16x16 のサブ画像の配列に保存しようとしています。私が使用している画像は 512x512 ピクセルです。ただし、ループを反復している間、getSubimage() は Raster 例外によって停止されます。

コードは次のとおりです。

public class TileList extends JPanel {

  private static final int width = 16;          //width of a tile
  private static final int height = width;
  private int col = 1;
  private int row = 1;

  private BufferedImage image;
  File tilesetImage = new File("image.png");
  BufferedImage tileset[];

  public void loadAndSplitImage (File loadImage) {
    try{
        image = ImageIO.read(loadImage);
    }catch(Exception error) {
        System.out.println("Error: cannot read tileset image.");
    }// end try/catch
    col = image.getWidth()/width;
    row = image.getHeight()/height;
    tileset = new BufferedImage[col*row];
  }// end loadAndSplitImage

  public TileList() {
    loadAndSplitImage(tilesetImage);
    setLayout(new GridLayout(row,col,1,1));
    setBackground(Color.black);

    int x=0;
    int y=0;
    int q=0;                                    //keeps track of tile #
    for (int i = 0; i < row; i++) {

        for (int j = 0; j < col; j++) {
            JPanel panel = new JPanel();
            tileset[q] = new BufferedImage(width, height, image.getType());
            tileset[q] = image.getSubimage(x,y,x + width,y + height);
            panel.add(new JLabel(new ImageIcon(tileset[q])));
            add(panel);
            x += width;
            q++;
        }// end for loop
        y += height;
        x = 0;
    }// end for loop
  }// end constructor
}// end class

これはエラーです:

Exception in thread "AWT-EventQueue-0" java.awt.image.RasterFormatException: (x
+ width) is outside of Raster
    at sun.awt.image.ByteInterleavedRaster.createWritableChild(ByteInterleav
edRaster.java:1245)
    at java.awt.image.BufferedImage.getSubimage(BufferedImage.java:1173)
    at TileList.<init>(TileList.java:59)
    at TileList.createAndShowGui(TileList.java:79)
    at TileList$1.run(TileList.java:88)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:721)
    at java.awt.EventQueue.access$200(EventQueue.java:103)
    at java.awt.EventQueue$3.run(EventQueue.java:682)
    at java.awt.EventQueue$3.run(EventQueue.java:680)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDo
main.java:76)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:691)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThre
ad.java:244)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.
java:163)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
ad.java:151)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:147)

    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:139)

    at java.awt.EventDispatchThread.run(EventDispatchThread.java:97)
4

2 に答える 2

15

に間違ったパラメータを渡していますgetSubimage。ドキュメントは言う...

パラメータ:
x - 指定された長方形領域の左上隅の X 座標
y - 指定された長方形領域の左上隅の Y 座標
w - 指定された長方形領域の幅
h - 指定された領域の高さ長方形の領域

を渡しています。これは、 = 256 の場合、実際には に等しいx, y, x + width, y + widthことを意味します。xwidth256 + 16 = 272

したがって、新しい画像は ...x + width = 256 + 272 = 528になり、画像領域よりも広くなります。

あなたは通過する必要がありますx, y, width, heigh

tileset[q] = image.getSubimage(x, y, width, height);
于 2013-01-11T01:24:02.317 に答える
0

javadoc から

* @param x the X coordinate of the upper-left corner of the
*          specified rectangular region
* @param y the Y coordinate of the upper-left corner of the
*          specified rectangular region
* @param w the width of the specified rectangular region
* @param h the height of the specified rectangular region

これは、次の行が間違っていることを意味します

image.getSubimage(x,y,x + width,y + height);

それは次のようなものでなければなりません

image.getSubimage(x, y, width, height);

完全な動作例については、この貼り付けを見てください

于 2013-01-11T01:25:44.240 に答える