在Java中编写GUI,出现了一个有趣的问题。我为稍长的代码道歉。
从JPanel派生的类图形显示上传的栅格。它使用包括缩放操作的栅格数据实现了多个功能。它还支持鼠标单击事件,该事件存储点的坐标并将其显示在栅格上。光栅配有仿射变换。
import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.Locale;
import javax.imageio.ImageIO;
import javax.swing.*;
public class Graphic extends JPanel{
private BufferedImage image;
private AffineTransform trans;
Point2D.Double point;
public Graphic () {
try {image = ImageIO.read(new File("e:/Work/test.jpg"));}
catch (Exception e) {}
trans = new AffineTransform();
trans.translate(0, 0);
trans.scale(1, 1);
point = new Point2D.Double(0,0);
this.setToolTipText("");
addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
point.x = (e.getPoint().getX() - trans.getTranslateX()) / trans.getScaleX();
point.y = (e.getPoint().getY() - trans.getTranslateY()) / trans.getScaleY();
System.out.println(trans); //Print affine transformation parameters
System.out.println(e.getPoint().getX() + " " + e.getPoint().getY()); //Cursor coordinates
repaint();
}
});
}
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g.create();
if (image != null ){
trans = g2d.getTransform();
Dimension size = this.getVisibleRect().getSize();
double sx = (size.getWidth() - image.getWidth()) / 2;
double sy = (size.getHeight() - image.getHeight()) / 2;
trans.translate(sx, sy);
g2d.setTransform(trans);
g2d.drawImage(image, 0, 0, this);
g2d.fillOval((int)point.x - 10, (int)point.y - 10, 20, 20);
g2d.dispose();
}
}
@Override
public String getToolTipText(MouseEvent e) {
double x = (e.getX() - trans.getTranslateX()) / trans.getScaleX();
double y = (e.getY() - trans.getTranslateY()) / trans.getScaleY();
return String.format(Locale.ROOT, "%2.2f", x) + " " + String.format(Locale.ROOT, "%3.2f", y);
}
public static void main(String[] args){
JFrame f = new JFrame();
f.setSize(800, 600);
f.add(new Graphic());
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
该类重新定义了工具提示方法并显示了光标的坐标。
在工具提示出现之前,鼠标点击图片按预期工作
Figure1: mouse click, without tool tip
在正确的位置出现一个圆圈。
Figure 2: drawn point mark, without tool tip
随后,让我们在工具提示出现后重复这些步骤。鼠标点击图片
Figure 3: mouse click, tool tip appears
出乎意料地表现出来,而且这一点很遥远。
Figure4: drawn point mark, tool tip appeared
调试代码,已发现以下问题...当出现工具提示时,仿射变换中的偏移比率sx = mo2,sy = m12从
变化AffineTransform[[1.0, 0.0, -1927.5], [0.0, 1.0, -1435.1]]
379.0 339.0 //Cursor coordinates xc, yc
到
AffineTransform[[1.0, 0.0, -2303.5], [0.0, 1.0, -1794.5]]
376.0 339.0 //Cursor coordinates xc, yc
为了避免整个情况的移位,而是m02和m12移位,应该校正变换后的坐标point.x,point.y,添加光标坐标+东西。它是Swing库中的一个错误还是一个功能:-)?
非常感谢您的评论,帮助或解释...
光栅文件:test.jpg。
答案 0 :(得分:1)
解决方案非常简单......
必须在存储点的坐标之前调用另一个repaint()。因此,利用鼠标点击事件之前的鼠标按压事件:
@Override
public void mousePressed(MouseEvent e) {
repaint();
}