Getting device display information in Web app
This code shows how to get display information like display resolution, dots per Inch, brightness etc of device using Tizen Web API.
function onSuccessCallback(display) {
console.log("Resolution{w, h}: " + "{" + display.resolutionWidth + ", " + display.resolutionHeight
+ "}\nDPI{w, h}: " + "{" + display.dotsPerInchWidth + ", " + display.dotsPerInchHeight
+ "}\nPhysical dimensions{w, h}: " + "{" + display.physicalWidth + ", " + display.physicalHeight
+ "}\nBrightness: " + display.brightness);
}
function onErrorCallback(error) {
alert("Not supported: " + error.message);
}
tizen.systeminfo.getPropertyValue("DISPLAY", onSuccessCallback, onErrorCallback);