Package org.foray.font.format

Examples of org.foray.font.format.TTFSubSetFile


     */
    public byte[] getRawFontFile(final FontUse4a fontUse)
            throws IOException {
        final Subset subset = fontUse.getSubset();
        if (subset != null) {
            final TTFSubSetFile ttfSubset = new TTFSubSetFile(this.ttf, subset);
            return ttfSubset.buildEmbeddableSubset();
        }
        final InputStream instream = getFontInputStream();
        return IOUtil.toByteArray(instream, FSTrueTypeFont.EXPECTED_FILE_SIZE);
    }
View Full Code Here

TOP

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

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.