new DisplayMode(int width, int height, int bitDepth, int refreshRate) : DisplayMode « java.awt « Java by API






new DisplayMode(int width, int height, int bitDepth, int refreshRate)

  

import java.awt.DisplayMode;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;

public class Main {
  public static void main(String[] argv) throws Exception {
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    GraphicsDevice gs = ge.getDefaultScreenDevice();

    boolean canChg = gs.isDisplayChangeSupported();
    if (canChg) {
      DisplayMode displayMode = gs.getDisplayMode();
      int screenWidth = 640;
      int screenHeight = 480;
      int bitDepth = 8;
      displayMode = new DisplayMode(screenWidth, screenHeight, bitDepth, displayMode
          .getRefreshRate());
      try {
        gs.setDisplayMode(displayMode);
      } catch (Throwable e) {
        gs.setFullScreenWindow(null);
      }
    }
  }
}

   
    
  








Related examples in the same category

1.DisplayMode.REFRESH_RATE_UNKNOWN
2.DisplayMode: getBitDepth()
3.DisplayMode: getHeight()
4.DisplayMode: getRefreshRate()
5.DisplayMode: getWidth()