Last active
September 4, 2020 05:06
-
-
Save comficker/2b97446cd968a00d75486564e5d056f5 to your computer and use it in GitHub Desktop.
Convert Pixels to Cm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function px2cm(px, dpi) { | |
return px * 2.54 / dpi | |
} | |
console.log(px2cm(1, 268)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Demo