All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sshtools.icongenerator.IconUtil Maven / Gradle / Ivy

package com.sshtools.icongenerator;

/**
 * Utilities.
 */
public class IconUtil {

	/**
	 * Convert a pixel amount to a point size. This assumes a PPI of 72pt (or 96
	 * pixels)
	 * 
	 * @param pixels pixels
	 * @return points
	 */
	public static int pixelsToPoints(int pixels) {
		return (int) ((float) pixels * 72f / 96f);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy