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

com.hfg.xml.msofficexml.docx.DocxUtil Maven / Gradle / Ivy

There is a newer version: 20240423
Show newest version
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);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy