我只是在包含透明部分的 JPanel 上遇到了工件问题。我的 JPanel 覆盖了 paintComponent() 方法:
protected void paintComponent(Graphics g) {
g2d = (Graphics2D) g;
drawMyAplhaImage(g2d);
}
如您所见,在 JPanel 上绘制的 Image 比 JPanel 本身要小一些。
我只是在包含透明部分的 JPanel 上遇到了工件问题。我的 JPanel 覆盖了 paintComponent() 方法:
protected void paintComponent(Graphics g) {
g2d = (Graphics2D) g;
drawMyAplhaImage(g2d);
}
如您所见,在 JPanel 上绘制的 Image 比 JPanel 本身要小一些。