Package org.foray.font.format

Examples of org.foray.font.format.Type1PFBFile


        if (this.type1File != null) {
            return this.type1File;
        }
        final FontFileReader reader = getRegisteredFont().getFontFileReader();
        if (reader.getFileFormat() == FontFileReader.FILEFORMAT_TYPE1_PFB) {
            this.type1File = new Type1PFBFile(getRegisteredFont()
                    .getFontFileReader());
        } else if (reader.getFileFormat() ==
                FontFileReader.FILEFORMAT_TYPE1_PFA) {
            this.type1File = new Type1PFAFile(getRegisteredFont()
                    .getFontFileReader());
View Full Code Here

TOP

Related Classes of org.foray.font.format.Type1PFBFile

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.