Examples of PdfTextRenderingMode


Examples of org.axsl.pdf.PdfTextRenderingMode

    /**
     * {@inheritDoc}
     */
    public void setTextRenderingMode(final PdfTextRenderingMode newTextRenderingMode)
            throws PdfException {
        PdfTextRenderingMode mode = newTextRenderingMode;
        if (mode == null) {
            mode = PdfTextRenderingMode.FILL;
        }
        if (! this.getGS().setTextRenderingMode(mode)) {
            // Nothing needs to change.
            return;
        }
        add(mode.getModeValue() + " Tr" + EOL);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.