Package org.jnode.awt.font.truetype.tables

Examples of org.jnode.awt.font.truetype.tables.OS2Table


     * @see Font#BOLD
     * @see Font#ITALIC
     * @see Font#PLAIN
     */
    public int getStyle() throws IOException {
        final OS2Table t = getOS2Table();
        if (t != null) {
            final int fsSel;
            fsSel = t.getFsSelection();
            int style = 0;
            if ((fsSel & 0x01) != 0) {
                style |= Font.ITALIC;
            }
            if ((fsSel & 0x20) != 0) {
View Full Code Here

TOP

Related Classes of org.jnode.awt.font.truetype.tables.OS2Table

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.