JavaFX Utils

ImageMounter

Component to help mount different components over ImageView.

ImageMounter class is generic in T extends ImageView.

This mounter permits to mount the following components :

Constructors

public ImageMounter(T image)
public ImageMounter(IComponent<T> component)

Usage

	ImageView image;

	try {
		new ImageMounter<>(image)
			.imageMagnifier(1.15)
			.movable()
			.mount();
	} catch (ComponentException e) {
		//Treat Exception
	}
					

Links