1

我有一个扩展 jlabel 并使用paintComponent 在其上绘制的类,如下所示这是paintPhotos.java

package myApp;
import java.awt.*;
import javax.swing.*;
/**
*
* @author PAGOLINA
*/
public class paintPhotos extends javax.swing.JLabel {

    public Image img; int w; int h;
public paintPhotos(Image img, int w, int h) {
    this.img = img; this.w = w; this.h = h;
    System.out.println("am paintclass");
 }
@Override
public void paintComponent(Graphics p) {
    System.out.println("am here");
    super.paintComponent(p);
    Graphics2D g2 = (Graphics2D) p;
    p.drawImage(img, 0, 0, w, h, this);
}

}

当我尝试从像这样的另一个类(AddScore.java)的构造函数中绘制时。

public AddScore() {
    initComponents();
    setLocationRelativeTo(null);
    removeNotify();
    setUndecorated(true);
    Image imag = new  ImageIcon(this.getClass().getResource("img/top_bg.jpg")).getImage();
    showPix1.setLayout(new BorderLayout());
    showPix1.add(new paintPhotos(imag,40,40), BorderLayout.CENTER);
}

以上工作正常并按指定绘制图像。

但是当我尝试从像这样的另一个类(AddScore.java)的 actionperform 事件中绘制图像时。

private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
    // TODO add your handling code here:
    Image imag = new ImageIcon(this.getClass().getResource("img/top_bg.jpg")).getImage();
            showPix1.setLayout(new BorderLayout());
            showPix1.add(new paintPhotos(imag,20,20), BorderLayout.CENTER);
}

上述语句不起作用,因为paintcomponent 不起作用,我做错了什么?

有人可以帮我解决这个问题吗,因为我已经尝试了所有可能的方法来调用我的paintPhotos 类但没有工作,这段代码有什么问题?

private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
Image imag = new ImageIcon(this.getClass().getResource("img/top_bg.jpg")).getImage();
        showPix1.setLayout(new BorderLayout());
        showPix1.add(new paintPhotos(imag,20,20), BorderLayout.CENTER);
}
4

1 回答 1

5
  1. Image作为图标 / ImageIcon放入JLabel

  2. 在这种情况下,不要即时加载图像,将其加载为局部变量

  3. for Icon/ ImageIconinJLabel正确使用LayoutManager

  4. 常见问题是Icon/ImageIcon不返回任何异常,必须测试null value

  5. 尽快发布SSCCE以获得更好的帮助

于 2012-10-29T09:00:37.243 回答