Package org.axsl.pdf

Examples of org.axsl.pdf.PdfFont


            final boolean kern) throws PdfException {
        if (size < 1) {
            return;
        }
        final FontPdf fontPdf = (FontPdf) fontUse.getFontOutput(Mime.PDF.getMimeString());
        final PdfFont pdfFont = this.getPDFDocument().getPdfFont(fontPdf);
        getContentStream().setFont(pdfFont, toPoints(area.traitFontSize()));

        /* Paint the text. */
        final CharSequence textToWrite = text.subSequence(startIndex, startIndex + size);
        getContentStream().drawText(textToWrite, kern);
View Full Code Here

TOP

Related Classes of org.axsl.pdf.PdfFont

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.