Java FontMetrics getLineHeight(FontMetrics fm)

Here you can find the source of getLineHeight(FontMetrics fm)

Description

get Line Height

License

Open Source License

Declaration

public static double getLineHeight(FontMetrics fm) 

Method Source Code


//package com.java2s;
/*/*  w  ww.j  a va2s  .  c  o  m*/
 * USE - UML based specification environment
 * Copyright (C) 1999-2004 Mark Richters, University of Bremen
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

import java.awt.FontMetrics;

public class Main {
    public static double getLineHeight(FontMetrics fm) {
        return fm.getMaxDescent() + fm.getMaxAscent();
    }
}

Related

  1. getConsoleFontMetrics(Font font)
  2. getLineBreakIndex(Graphics g, String text, int index, double maxWidth)
  3. getLineHeight(Component c, int defaultHeight)
  4. getLineHeight(Component c, int defaultHeight)
  5. getLineHeight(Component component, int count)
  6. getLongestStringWidth(FontMetrics fm, String[] theStrings)
  7. getMaxFittingFontSize(Graphics g, Font font, String string, Dimension size)
  8. getMaxFontHeight(final java.awt.Font font)
  9. getMonospacedFontNames()