Skip to content

Instantly share code, notes, and snippets.

@comficker
Last active September 4, 2020 05:06
Show Gist options
  • Save comficker/2b97446cd968a00d75486564e5d056f5 to your computer and use it in GitHub Desktop.
Save comficker/2b97446cd968a00d75486564e5d056f5 to your computer and use it in GitHub Desktop.
Convert Pixels to Cm
function px2cm(px, dpi) {
return px * 2.54 / dpi
}
console.log(px2cm(1, 268))
@comficker
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment