Package org.axsl.ps

Examples of org.axsl.ps.Encoding


        assertNotNull(server);
        final RegisteredFont rf = server.getRegisteredFont("Base14-Times");
        assertNotNull(rf);
        final FreeStandingFont fsf = rf.getFreeStandingFont();
        assertNotNull(fsf);
        final Encoding encoding = fsf.getInternalEncoding();
        assertNotNull(encoding);
        /* Get the kerning value for an A-dieresis and an O-tilde, found at
         * line 519 of the AFM for Times-Roman. */
        final int kernValue = fsf.kern(0xC4, 0xD5);
        assertEquals(-55, kernValue);
View Full Code Here

TOP

Related Classes of org.axsl.ps.Encoding

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.