Package org.apache.fop.complexscripts.fonts.GlyphTable

Examples of org.apache.fop.complexscripts.fonts.GlyphTable.LookupTable


            return null;
        }
    }

    private GlyphSubstitutionSubtable[] findGSUBSubtables ( GlyphSubstitutionTable gsub, String script, String language, String feature, String lid ) {
        LookupTable lt = gsub.getLookupTable ( lid );
        if ( lt != null ) {
            return (GlyphSubstitutionSubtable[]) lt.getSubtables();
        } else {
            return null;
        }
    }
View Full Code Here


            return null;
        }
    }

    private GlyphPositioningSubtable[] findGPOSSubtables ( GlyphPositioningTable gpos, String script, String language, String feature, String lid ) {
        LookupTable lt = gpos.getLookupTable ( lid );
        if ( lt != null ) {
            return (GlyphPositioningSubtable[]) lt.getSubtables();
        } else {
            return null;
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.fop.complexscripts.fonts.GlyphTable.LookupTable

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.