1
I have best answer for you :
https://stackoverflow.com/questions/31668595/how-to-insert-header-and-footer-to-existing-pdf-document-using-itextsharp-witho
https://www.aspsnippets.com/Articles/iTextSharp-Add-Page-numbers-to-existing-PDF-using-C-and-VBNet.aspx
http://www.nullskull.com/q/10105908/itextsharp--adding-footers.aspx
Thanks
0
Hi,
https://www.aspsnippets.com/Articles/iTextSharp-Add-Page-numbers-to-existing-PDF-using-C-and-VBNet.aspx
Hope it helps...
-1
Hi Rahul,
Maybe it cannot be implemented directly, here is a kind of method to help draw the footer in existing pdf file. Of course, it need to use another component but not iTextSharp, it's Spire.PDF. Try the code below,
private static void DrawPageNumber(PdfPageCollection section, PdfMargins margin, int startNumber, int pageCount) { foreach (PdfPageBase page in section) { page.Canvas.SetTransparency(0.5f); PdfBrush brush = PdfBrushes.Black; PdfPen pen = new PdfPen(brush, 0.75f); PdfTrueTypeFont font = new PdfTrueTypeFont(new Font("Arial", 10f, FontStyle.Bold), true); PdfStringFormat format = new PdfStringFormat(PdfTextAlignment.Right); format.MeasureTrailingSpaces = true; float space = font.Height * 0.75f; float x = margin.Left; float width = page.Canvas.ClientSize.Width - margin.Left - margin.Right; float y = page.Canvas.ClientSize.Height - margin.Bottom + space; page.Canvas.DrawLine(pen, x, y, x + width, y); y = y + 1; String numberLabel = String.Format("{0} of {1}", startNumber++, pageCount); page.Canvas.DrawString(numberLabel, font, brush, x + width, y, format); page.Canvas.SetTransparency(1); } }article:
http://www.e-iceblue.com/Knowledgebase/Spire.PDF/Program-Guide/Add-PDF-Footer.html 