Package org.axsl.ps

Examples of org.axsl.ps.Type1PrivateDictionary


    /**
     * Returns the stemV value, as parsed.
     * @return The stemV value.
     */
    public int getStemV() {
        final Type1PrivateDictionary privateDict = this.getPrivateDictionary();
        if (privateDict == null) {
            return 0;
        }
        return privateDict.getStdVw().intValue();
    }
View Full Code Here


//        assertEquals(-40, fontBBox[0]);
        assertEquals(-250, fontBBox[1]);
        assertEquals(1009, fontBBox[2]);
        assertEquals(969, fontBBox[3]);

        final Type1PrivateDictionary privateDict = fontDict.getPrivateDictionary();
        assertNotNull(privateDict);

        final Type1CharStringsDictionary charStringsDict = fontDict.getCharStringsDictionary();
        assertNotNull(charStringsDict);
    }
View Full Code Here

TOP

Related Classes of org.axsl.ps.Type1PrivateDictionary

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.