Package com.adobe.dp.epub.opf

Examples of com.adobe.dp.epub.opf.FontResource


        if (primaryUUID != null && primaryUUID.startsWith("urn:uuid:")) {
          resName = resName + "-" + primaryUUID.substring(9);
        }
        bds.getOutputStream().write(font.getSubsettedFont());
        String folder = epub.getContentFolder() == null ? "" : epub.getContentFolder() + "/";
        FontResource fontResource = epub.createFontResource(folder + "fonts/" + resName + ".otf", bds);
        FontFaceRule face = styleResource.getStylesheet().createFontFace(fontResource);
        face.set("font-family", new CSSQuotedString(entry.familyName));
        switch (entry.weight) {
        case FontPropertyConstants.WEIGHT_NORMAL:
          face.set("font-weight", new CSSName("normal"));
View Full Code Here

TOP

Related Classes of com.adobe.dp.epub.opf.FontResource

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.