static JWindow showAnim(File imageFile) { ret showAnimationInTopRightCorner(loadBufferedImagePossiblyFixingGIFs(imageFile), ""); } static JWindow showAnim(S imageID, double seconds) { ret showAnimationInTopRightCorner(imageID, seconds); } static JWindow showAnim(S imageID) { ret showAnimationInTopRightCorner(imageID); } static JWindow showAnim(S imageID, S text) { ret showAnimationInTopRightCorner(imageID, text); } static JWindow showAnim(S imageID, S text, double seconds) { ret showAnimationInTopRightCorner(imageID, text, seconds); } static JWindow showAnim(BufferedImage image, S text) { ret showAnimationInTopRightCorner(image, text); } static JWindow showAnim(BufferedImage image, S text, double seconds) { ret showAnimationInTopRightCorner(image, text, seconds); }