字体基准线



  1. public static class FontMetrics {  
  2.     /** 
  3.      * The maximum distance above the baseline for the tallest glyph in  
  4.      * the font at a given text size. 
  5.      */  
  6.     public float   top;  
  7.     /** 
  8.      * The recommended distance above the baseline for singled spaced text. 
  9.      */  
  10.     public float   ascent;  
  11.     /** 
  12.      * The recommended distance below the baseline for singled spaced text. 
  13.      */  
  14.     public float   descent;  
  15.     /** 
  16.      * The maximum distance below the baseline for the lowest glyph in  
  17.      * the font at a given text size. 
  18.      */  
  19.     public float   bottom;  
  20.     /** 
  21.      * The recommended additional space to add between lines of text. 
  22.      */  
  23.     public float   leading;  
  24. }  

你可能感兴趣的:(字体基准线)