Component to help mount different components over ImageView.
ImageMounter class is generic in T extends ImageView.
This mounter permits to mount the following components :
public ImageMounter(T image)
public ImageMounter(IComponent<T> component)
ImageView image;
try {
new ImageMounter<>(image)
.imageMagnifier(1.15)
.movable()
.mount();
} catch (ComponentException e) {
//Treat Exception
}