Package org.foray.font

Examples of org.foray.font.RegisteredFont


     * @throws FontException For font system errors getting the font.
     */
    protected FreeStandingFont getHelveticaFont() throws FontException {
        final FontServer4a fontServer = getFontServer();
        assertNotNull(fontServer);
        final RegisteredFont rf = fontServer.getRegisteredFont("Base14-Helvetica");
        assertNotNull(rf);
        final FreeStandingFont fsf = rf.getFreeStandingFont();
        assertNotNull(fsf);
        return fsf;
    }
View Full Code Here

TOP

Related Classes of org.foray.font.RegisteredFont

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.