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

org.apache.poi.util.Units Maven / Gradle / Ivy

There is a newer version: 5.2.5
Show newest version
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */
package org.apache.poi.util;

import java.awt.geom.Dimension2D;
import java.awt.geom.Rectangle2D;

public class Units {
    /**
     * In Escher absolute distances are specified in
     * English Metric Units (EMUs), occasionally referred to as A units;
     * there are 360000 EMUs per centimeter, 914400 EMUs per inch, 12700 EMUs per point.
     */
    public static final int EMU_PER_PIXEL = 9525;
    public static final int EMU_PER_POINT = 12700;
    public static final int EMU_PER_CENTIMETER = 360000;

    /** 72 points per inch (dpi) */
    public static final int EMU_PER_INCH = 12700*72;

    /** EMU_PER_POINT/20 */
    public static final int EMU_PER_DXA = 635;

    /**
     * Master DPI (576 pixels per inch).
     * Used by the reference coordinate system in PowerPoint (HSLF)
     */
    public static final int MASTER_DPI = 576;

    /**
     * Pixels DPI (96 pixels per inch)
     */
    public static final int PIXEL_DPI = 96;

    /**
     * Points DPI (72 pixels per inch)
     */
    public static final int POINT_DPI = 72;


    /**
     * Width of one "standard character" of the default font in pixels. Same for Calibri and Arial.
     * "Standard character" defined as the widest digit character in the given font.
     * Copied from XSSFWorkbook, since that isn't available here.
     * 

* Note this is only valid for workbooks using the default Excel font. *

* Would be nice to eventually support arbitrary document default fonts. */ public static final float DEFAULT_CHARACTER_WIDTH = 7.0017f; /** * Column widths are in fractional characters, this is the EMU equivalent. * One character is defined as the widest value for the integers 0-9 in the * default font. */ public static final int EMU_PER_CHARACTER = (int) (EMU_PER_PIXEL * DEFAULT_CHARACTER_WIDTH); /** * Converts points to EMUs * @param points points * @return EMUs */ public static int toEMU(double points){ return (int)Math.rint(EMU_PER_POINT*points); } /** * Converts pixels to EMUs * @param pixels pixels * @return EMUs */ public static int pixelToEMU(int pixels) { return pixels*EMU_PER_PIXEL; } /** * Converts EMUs to points * @param emu emu * @return points */ public static double toPoints(long emu){ return (emu == -1) ? -1.d : (double)emu/EMU_PER_POINT; } /** * Converts a value of type FixedPoint to a floating point * * @param fixedPoint value in fixed point notation * @return floating point (double) * * @see [MS-OSHARED] - 2.2.1.6 FixedPoint */ public static double fixedPointToDouble(int fixedPoint) { int i = (fixedPoint >> 16); int f = fixedPoint & 0xFFFF; return (i + f/65536d); } /** * Converts a value of type floating point to a FixedPoint * * @param floatPoint value in floating point notation * @return fixedPoint value in fixed points notation * * @see [MS-OSHARED] - 2.2.1.6 FixedPoint */ public static int doubleToFixedPoint(double floatPoint) { double fractionalPart = floatPoint % 1d; double integralPart = floatPoint - fractionalPart; int i = (int)Math.floor(integralPart); int f = (int)Math.rint(fractionalPart*65536d); return (i << 16) | (f & 0xFFFF); } public static double masterToPoints(int masterDPI) { double points = masterDPI; points *= POINT_DPI; points /= MASTER_DPI; return points; } public static int pointsToMaster(double points) { points *= MASTER_DPI; points /= POINT_DPI; return (int)Math.rint(points); } public static int pointsToPixel(double points) { points *= PIXEL_DPI; points /= POINT_DPI; return (int)Math.rint(points); } public static double pixelToPoints(double pixel) { double points = pixel; points *= POINT_DPI; points /= PIXEL_DPI; return points; } public static Dimension2D pointsToPixel(Dimension2D pointsDim) { double width = pointsDim.getWidth() * PIXEL_DPI / POINT_DPI; double height = pointsDim.getHeight() * PIXEL_DPI / POINT_DPI; return new Dimension2DDouble(width, height); } public static Dimension2D pixelToPoints(Dimension2D pointsDim) { double width = pointsDim.getWidth() * POINT_DPI / PIXEL_DPI; double height = pointsDim.getHeight() * POINT_DPI / PIXEL_DPI; return new Dimension2DDouble(width, height); } public static Rectangle2D pointsToPixel(Rectangle2D pointsDim) { double x = pointsDim.getX() * PIXEL_DPI / POINT_DPI; double y = pointsDim.getY() * PIXEL_DPI / POINT_DPI; double width = pointsDim.getWidth() * PIXEL_DPI / POINT_DPI; double height = pointsDim.getHeight() * PIXEL_DPI / POINT_DPI; return new Rectangle2D.Double(x, y, width, height); } public static Rectangle2D pixelToPoints(Rectangle2D pointsDim) { double x = pointsDim.getX() * POINT_DPI / PIXEL_DPI; double y = pointsDim.getY() * POINT_DPI / PIXEL_DPI; double width = pointsDim.getWidth() * POINT_DPI / PIXEL_DPI; double height = pointsDim.getHeight() * POINT_DPI / PIXEL_DPI; return new Rectangle2D.Double(x, y, width, height); } public static int charactersToEMU(double characters) { return (int) characters * EMU_PER_CHARACTER; } /** * @param columnWidth specified in 256ths of a standard character * @return equivalent EMUs */ public static int columnWidthToEMU(int columnWidth) { return charactersToEMU(columnWidth / 256d); } public static double toDXA(long emu) { return (emu == -1) ? -1.d : (double)emu/EMU_PER_DXA; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy