Skip to main content
Skip table of contents

How to change the line spacing of text?

In my PDF the default space between the lines is slightly greater than I consider ideal.

I'm creating a PDF document consisting of text only, where all the text is the same point size and font family but each character could potentially be a different color. Everything seems to work fine, but the default space between the lines is slightly greater than I consider ideal. Is there a way to control this?

Posted on StackOverflow on Feb 16, 2014 by user2079230

According to the PDF specification, the distance between the baseline of two lines is called the leading. In iText, the default leading is 1.5 times the size of the font. For instance: the default font size is 12 pt, hence the default leading is 18.

You can change the leading of a Paragraph by using a constructor that accepts a leading parameter.

You can also change the leading using one of the methods that sets the leading. For instance:

paragraph.SetLeading(fixed, multiplied);

The first parameter is the fixed leading: if you want a leading of 15 no matter which font size is used, you can choose fixed = 15 and multiplied = 0.

The second parameter is a factor: for instance if you want the leading to be twice the font size, you can choose fixed = 0 and multiplied = 2. In this case, the leading for a paragraph with font size 12 will be 24, for a font size 10, it will be 20, and son on.

You can also combine fixed and multiplied leading.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.