Package com.sun.pdfview.font.ttf

Examples of com.sun.pdfview.font.ttf.PostTable$PostMapFormat0


     * Get the outline of a character given the character name
     */
    @Override
  protected synchronized GeneralPath getOutline (String name, float width) {
        int idx;
        PostTable post = (PostTable) this.font.getTable ("post");
        if (post != null) {
            idx = post.getGlyphNameIndex (name);
            if (idx != 0) {
                return getOutline (idx, width);
            }
            return null;
        }
View Full Code Here

TOP

Related Classes of com.sun.pdfview.font.ttf.PostTable$PostMapFormat0

Copyright © 2018 www.massapicom. 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.