我在ScrollPane中有一个ImageView。我可以通过向ScrollPane添加一个监听器来获取鼠标单击事件。但是,我想获取被点击的图像上像素的x和y坐标。
为了使它变得更加复杂,图像可以放大和缩小,但是一旦我对我正在做的事情有所了解,我就可以想出来。
答案 0 :(得分:6)
将鼠标监听器添加到ImageView
而不是ScrollPane
。
这是一个简单的例子:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.ScrollPane;
import javafx.scene.image.ImageView;
import javafx.stage.Stage;
public class ClickOnScrollingImage extends Application {
private static final String IMAGE_URL = "https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/crop_p_color2_enhanced_release_small.png?itok=5BtHNey_" ;
@Override
public void start(Stage primaryStage) {
ScrollPane scroller = new ScrollPane();
ImageView imageView = new ImageView(IMAGE_URL);
scroller.setContent(imageView);
// the following line allows detection of clicks on transparent
// parts of the image:
imageView.setPickOnBounds(true);
imageView.setOnMouseClicked(e -> {
System.out.println("["+e.getX()+", "+e.getY()+"]");
});
Scene scene = new Scene(scroller, 600, 600);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}