Java tutorial
//package com.java2s; public class Main { public static int devicePixelToMraidPoint(int pixelSize, float scale) { int points = Math.round(pixelSize / scale); return points; } }