kkreft
1/19/2017 - 9:33 AM

Convert pt to px

Convert pt to px

convertPtToPx = function(pt) {
  return Math.round(parseInt(pt, 10) * 96 / 72);
};