view FinalThesis/src/RetinaScale.java @ 37:f7a79686256d default tip

update mid
author riono <e165729@ie.u-ryukyu.ac.jp>
date Mon, 17 Feb 2020 00:04:06 +0900
parents fce3f9c18d8d
children
line wrap: on
line source

public static int getRetinaScale(int shareScreenNumber) {
        int scale = 1;
        GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment();
        final GraphicsDevice[] devices = env.getScreenDevices();
        GraphicsConfiguration conf = devices[shareScreenNumber].getDefaultConfiguration();
        scale = (int)conf.getDefaultTransform().getScaleX();
       return scale;
    }