Mercurial > hg > Papers > 2020 > riono-thesis
annotate FinalThesis/src/RetinaScale.java @ 35:a95ea8f61214
update Slide and mid
author | riono <e165729@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 16 Feb 2020 22:52:07 +0900 |
parents | fce3f9c18d8d |
children |
rev | line source |
---|---|
24 | 1 public static int getRetinaScale(int shareScreenNumber) { |
2 int scale = 1; | |
3 GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment(); | |
4 final GraphicsDevice[] devices = env.getScreenDevices(); | |
5 GraphicsConfiguration conf = devices[shareScreenNumber].getDefaultConfiguration(); | |
6 scale = (int)conf.getDefaultTransform().getScaleX(); | |
7 return scale; | |
8 } |