Package com.itextpdf.text

Examples of com.itextpdf.text.Anchor


    private Element createFooter() {
        final Paragraph footer = new Paragraph();
        footer.add(new Phrase("Generated using ", FONT_FOOTER));

        final Anchor a = new Anchor(config.getProperty("app.name"), FONT_FOOTER);
        a.setReference("http://timurstrekalov.github.com/saga/");
        footer.add(a);

        footer.add(new Phrase(" version " + config.getProperty("app.version"), FONT_FOOTER));

        footer.setAlignment(Element.ALIGN_RIGHT);
View Full Code Here

TOP

Related Classes of com.itextpdf.text.Anchor

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.