1 51 package org.apache.fop.layout; 52 53 public interface FontDescriptor { 54 55 int getAscender(); int getCapHeight(); 58 int getDescender(); int getFlags(); 60 int[] getFontBBox(); 61 String fontName(); int getItalicAngle(); 63 int getStemV(); 64 65 boolean hasKerningInfo(); 66 java.util.Map getKerningInfo(); 67 boolean isEmbeddable(); 68 byte getSubType(); 69 org.apache.fop.pdf.PDFStream getFontFile(int objNum); 70 73 } 74 75 76 | Popular Tags |