この質問は、前の質問に関連しています。GridBaglayout から直交座標 (x,y) を生成する方法は?
各画像の座標は取得できたのですが、(System.out.println)で座標と画面上の画像の配置を確認したところ、間違っているようです。たとえば、画面上で最初の画像の x ポイントが座標 20 のセル 2 にあることが明らかな場合、プログラムは x=1 を示します。
コードの一部を次に示します。
public Grid (){
setPreferredSize(new Dimension(600,600));
....
setLayout(new GridBagLayout());
GridBagConstraints gc = new GridBagConstraints();
gc.weightx = 1d;
gc.weighty = 1d;
gc.insets = new Insets(0, 0, 0, 0);//top, left, bottom, and right
gc.fill = GridBagConstraints.BOTH;
JLabel[][] label = new JLabel[ROWS][COLS];
Random rand = new Random();
// fill the panel with labels
for (int i=0;i<IMAGES;i++){
ImageIcon icon = createImageIcon("myPics.jpg");
int r, c;
do{
//pick random cell which is empty
r = (int)Math.floor(Math.random() * ROWS);
c = (int)Math.floor(Math.random() * COLS);
} while (label[r][c]!=null);
//randomly scale the images
int x = rand.nextInt(50)+30;
int y = rand.nextInt(50)+30;
Image image = icon.getImage().getScaledInstance(x,y, Image.SCALE_SMOOTH);
icon.setImage(image);
JLabel lbl = new JLabel(icon); // Instantiate GUI components
gc.gridx = r;
gc.gridy = c;
add(lbl, gc); //add(component, constraintObj);
label[r][c] = lbl;
}
このコードで座標を確認しました:
Component[] components = getComponents();
for (Component component : components) {
System.out.println(component.getBounds());
}