Login  Register

Maximize an image window

Posted by albertoduina@virgilio.it on Nov 21, 2008; 10:57am
URL: http://imagej.273.s1.nabble.com/Maximize-an-image-window-tp3694436.html

Hi all,
sometimes can be useful maximize an image window:


public void showImageMaximized(ImagePlus imp) {
                imp.show();
                ImageWindow win = imp.getWindow();
                win.setExtendedState(ImageWindow.MAXIMIZED_BOTH);
        }


Unfortunately for a very short time you can see the little image, before
the maximization.

Regards

Alberto