Package org.apache.poi.hslf.record

Examples of org.apache.poi.hslf.record.FontCollection.addFont()


   */
  public int addFont(PPFont font) {
    FontCollection fonts = getDocumentRecord().getEnvironment().getFontCollection();
    int idx = fonts.getFontIndex(font.getFontName());
    if (idx == -1) {
      idx = fonts.addFont(font.getFontName(), font.getCharSet(), font.getFontFlags(), font
          .getFontType(), font.getPitchAndFamily());
    }
    return idx;
  }

View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.