mrflix / dimensions

A Chrome extension for measuring screen dimensions
MIT License
772 stars 76 forks source link

Use tab size instead of image size #15

Closed miensol closed 9 years ago

miensol commented 10 years ago

On retina displays the captured image is twice as big as reported by tab.width and tab.heigh - which is natural. So when drawing on canvas we can use tab.height and tab.width to downscale the image. This commit fixes #8

mrflix commented 9 years ago

@miensol cool fix. Thanks a lot!