com.hfg.xml.msofficexml.docx.DocxUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com_hfg Show documentation
Show all versions of com_hfg Show documentation
com.hfg xml, html, svg, and bioinformatics utility library
package com.hfg.xml.msofficexml.docx;
public class DocxUtil
{
private static int PIXELS_PER_INCH = 96;
/**
* Converts the value to Dxa (twentieths of a point).
*/
public static int convertPixelsToDxa(int inPixelValue)
{
// There are 72 points per inch.
float points = inPixelValue * 72 / PIXELS_PER_INCH;
return (int) (points * 5);
}
}