PDFRasterizer.NET 4.0 is now available. Supports .NET Core. Renders pixel-perfectly.
- Calculate the height of a paragraph in PDF
- Multipage TIFF to PDF
- Create PDF in C#
- Text formatting
- How to add page numbers to your PDF
- Append multiple PDF documents
- Add text field to PDF
- Convert XHTML to PDF
- Add footer with left and right aligned text on same line
- XhtmlParagraph and TrueType fonts
- What is the resulting fontsize in PDF for rich text used in a SimpleXhtmlShape
- Read and write meta data from PDF
- Merge PDF
- Stitch PDF documents
- Convert TXT to PDF
- Bulleted list from XML and XSL
- Use multiple licenses
- Generate PDF form from XML
- Generate PDF with local images from XML with Xamarin.iOS
Add footer with left and right aligned text on same line
Add a footer to a PDF document that has left aligned text with a page number and right aligned text on the same line.
Document pdf = new Document();
Section section = pdf.Sections.Add();
// this bottom margin of the section determines the space available for the footer
section.Margin.Bottom = 100;
double width = section.PageSize.Width - section.Margin.Left - section.Margin.Right;
// filler text
for (int i=0; i<100; i++)
{
TextParagraph text = new TextParagraph();
text.SpacingAfter = 12;
section.Paragraphs.Add(text);
text.Fragments.Add(new Fragment("Generate PDF documents from scratch. Use code, XML/XSL or a combination."));
}
Footer footer = new Footer();
section.Footer = footer;
// the trick to have both left and right aligned
// text on the same line is to use a table
Table table = new Table();
// the footer will be top-aligned so to move it down you need
// to add spacing before the first paragraph of the footer
table.SpacingBefore = 12;
footer.Paragraphs.Add(table);
Row row = table.Rows.Add();
// left text
Cell leftCell = row.Cells.Add();
leftCell.PreferredWidth = width / 2;
TextParagraph leftText = new TextParagraph();
leftCell.Paragraphs.Add(leftText);
Fragment pageNumber = new Fragment("Page #p");
pageNumber.HasContextFields = true;
leftText.Fragments.Add(pageNumber);
// right text
Cell rightCell = row.Cells.Add();
rightCell.PreferredWidth = width / 2;
TextParagraph rightText = new TextParagraph();
rightText.HorizontalAlignment = HorizontalAlignment.Right;
rightCell.Paragraphs.Add(rightText);
Fragment title = new Fragment("TallPDF.NET");
rightText.Fragments.Add(title);
string path = "out.pdf";
using (FileStream file = new FileStream(path, FileMode.Create))
{
pdf.Write(file);
}
System.Diagnostics.Process.Start(path);

Download TallPDF.NET 5.0
We will send you a download link
Why do we ask your email address?
We send tips that speed up your evaluation
We let you know about bug fixes
You can always unsubscribe with one click
We never share your address with a 3rd party
Thank you for your download
We have sent an email with a download link.