Get monitor height in cm @param edid The EDID byte array @return Monitor height in cm
(byte[] edid)
| 166 | * @return Monitor height in cm |
| 167 | */ |
| 168 | public static int getVcm(byte[] edid) { |
| 169 | // Byte 22 is vertical size in cm |
| 170 | return edid[22]; |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * Get the VESA descriptors |
no outgoing calls