vote up 0 vote down star

Hello,

know any body howto add several font-sizes into a PDF without having the following problems with iText.

I want create a PDF with multiple chunks in one paragraph. These chunks could have different font-sizes. Depending on these sizes the height of some lines must be increased. But by default nothing happens and the (bigger) line x overlaps line x-1.

Now i could calculate the maximum font-size of one paragraph myself and add this the these paragraph. But this increase also the line-height of lines which does not need this.

Has anybody solved this problem or is there any option to "fix this" IMO standard problem?

Thanks and best regards

Finally here is some sample code:

import java.io.FileOutputStream;

import com.lowagie.text.*;

public class Test {
public static void main(String[] args) {
    try {
        FileOutputStream output = new FileOutputStream("/home/christoph/Desktop/atest.pdf");

        Document document = new Document(PageSize.A4);
        document.setMargins(70, 75, 65, 90);
        PdfWriter writer = PdfWriter.getInstance(document, output);

        document.open();

        Paragraph paragraph = new Paragraph();

        Chunk chunk1 = new Chunk();
        chunk1.append("Hallo das ist ein langer Text. Hallo das ist ein langer Text. ");
        chunk1.setFont(FontFactory.getFont(BaseFont.COURIER_BOLD));
        paragraph.add(new Phrase(chunk1));

        Chunk chunk2 = new Chunk();
        chunk2.append("Hallo das ist ein langer Text. Hallo das ist ein langer Text. ");
        chunk2.setFont(FontFactory.getFont(BaseFont.COURIER_BOLD, 40));
        paragraph.add(new Phrase(chunk2));

        Chunk chunk3 = new Chunk();
        chunk3.append("Hallo das ist ein langer Text. Hallo das ist ein langer Text. ");
        chunk3.setFont(FontFactory.getFont(BaseFont.COURIER_BOLD));
        paragraph.add(new Phrase(chunk3));

        document.add(paragraph);
        paragraph = new Paragraph();

        Chunk chunk4 = new Chunk();
        chunk4.append("Hallo das ist ein langer Text. Hallo das ist ein langer Text. ");
        chunk4.append("Und jetzt ");
        chunk4.setFont(FontFactory.getFont(BaseFont.COURIER_BOLD));
        paragraph.add(new Phrase(chunk4));

        Chunk chunk5 = new Chunk();
        chunk5.append("in GROß ");
        chunk5.setFont(FontFactory.getFont(BaseFont.COURIER_BOLD, 40));
        paragraph.add(new Phrase(chunk5));

        Chunk chunk6 = new Chunk();
        chunk6.append("und dann wieder normal weiter. ");
        chunk6.append("Hallo das ist ein langer Text. Hallo das ist ein langer Text. ");
        chunk6.setFont(FontFactory.getFont(BaseFont.COURIER_BOLD));
        paragraph.add(new Phrase(chunk6));

        document.add(paragraph);

        document.close();

        writer.close();
        output.close();
    } catch (Exception e) {
        e.printStackTrace();
    }
}
}
flag

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.