Maximize an image window

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Maximize an image window

albertoduina@virgilio.it
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