Skip to content

Instantly share code, notes, and snippets.

@comficker
comficker / PX2CM.js
Last active September 4, 2020 05:06
Convert Pixels to Cm
function px2cm(px, dpi) {
return px * 2.54 / dpi
}
console.log(px2cm(1, 268))
@comficker
comficker / HEX2RGB.js
Created June 6, 2018 01:16
Bellow are javascript code can convert hex to rgb color. Demo: http://aiconverter.com/color/hex-to-rgb
function HEX2RGB (hex) {
"use strict";
if (hex.charAt(0) === '#') {
hex = hex.substr(1);
}
if ((hex.length < 2) || (hex.length > 6)) {
return false;
}
var values = hex.split(''),
r,