Covert Pixels to Centimeters


/ Published in: Ruby
Save to your folder(s)



Copy this code and paste it in your HTML
  1. def convert_pixels_to_cms(pixels, dpi)
  2. return (pixels / dpi) * 2.54
  3. end

Report this snippet


Comments


You need to login to view comments.