Sizing window and image for screen resolution

Applet creates Frame that displays JPG or GIF image. Would like to size Frame, and zoom image, on basis of screen resolution, to avoid necessity to scroll image. How can applet or button or frame access screen resolution numbers? Thanks.
[258 byte] By [FrankJNatoli] at [2007-9-26 2:03:26]
# 1

Hi,

Call this method. Pass the Frame as parameter

<pre>

public void centerFrame(Frame frame)

{

//Center the window

Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();

Dimension frameSize = frame.getSize();

if (frameSize.height > screenSize.height) {

frameSize.height = screenSize.height;

}

if (frameSize.width > screenSize.width) {

frameSize.width = screenSize.width;

}

frame.setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);

frame.setVisible(true);

}

</pre>

Hope this solves ur problem

Regards,

Harsha

harshapr@comatindia.com

harsha_pr at 2007-6-29 8:46:11 > top of Java-index,Desktop,Core GUI APIs...