Returns the size, in pixels, of the primary display.
()
| 2558 | |
| 2559 | /** Returns the size, in pixels, of the primary display. */ |
| 2560 | public static Dimension getScreenSize() { |
| 2561 | Rectangle bounds = GUI.getScreenBounds(); |
| 2562 | return new Dimension(bounds.width, bounds.height); |
| 2563 | } |
| 2564 | |
| 2565 | /** Returns, as an array of strings, a list of the LUTs in the |
| 2566 | * Image/Lookup Tables menu. |