我正在用画布做一些有价值的事情,我需要获得以下值:
// This one:
window.devicePixelRatio
// and any one of:
Context2d.webkitBackingStorePixelRatio ||
Context2d.mozBackingStorePixelRatio ||
Context2d.msBackingStorePixelRatio ||
Context2d.oBackingStorePixelRatio ||
Context2d.backingStorePixelRatio
这些似乎在 GWT 等效类中不可用(我认为) - 我必须创建一个本地方法来获取它们还是有更好的方法呢?
谢谢