| c# Programming Glossary: pdfcontentbyteiTextSharp Creating a Footer Page # of # http://stackoverflow.com/questions/1032614/itextsharp-creating-a-footer-page-of  void OnEndPage PdfWriter writer Document document  PdfContentByte cb writer.DirectContent cb.SaveState string text Page writer.PageNumber.. 
 c# itextsharp PDF creation with watermark on each page http://stackoverflow.com/questions/2372041/c-sharp-itextsharp-pdf-creation-with-watermark-on-each-page  xPosition 300 float yPosition 400 float angle 45 try   PdfContentByte under writer.DirectContentUnder  BaseFont baseFont BaseFont.CreateFont.. baseFont fontSize  under.ShowTextAligned PdfContentByte.ALIGN_CENTER watermarkText xPosition yPosition angle  under.EndText.. 
 iTextSharp creation of a pdf from a list of byte arrays http://stackoverflow.com/questions/3961804/itextsharp-creation-of-a-pdf-from-a-list-of-byte-arrays  i  PdfCopy.PageStamp stamp copy.CreatePageStamp page  PdfContentByte cb stamp.GetUnderContent  cb.SaveState  stamp.AlterContents.. doc ms doc.SetPageSize PageSize.LETTER doc.Open  PdfContentByte cb writer.DirectContent PdfImportedPage page  PdfCopy copy new.. 
 ITextSharp insert text to an existing pdf http://stackoverflow.com/questions/3992617/itextsharp-insert-text-to-an-existing-pdf  document fs document.Open the pdf content PdfContentByte cb writer.DirectContent select the font properties BaseFont.. 
 Merging multiple PDFs using iTextSharp in c#.net http://stackoverflow.com/questions/6029142/merging-multiple-pdfs-using-itextsharp-in-c-net  FileMode.Create step 3 we open the document document.Open PdfContentByte cb writer.DirectContent PdfImportedPage page int rotation step.. 
 Itextsharp: Adjust 2 elements on exactly one page http://stackoverflow.com/questions/7590071/itextsharp-adjust-2-elements-on-exactly-one-page  int rowStart int rowEnd float xPos float yPos PdfContentByte canvas To place a table with the upper left corner positioned.. 
 Removing Watermark from a PDF using iTextSharp http://stackoverflow.com/questions/8768130/removing-watermark-from-a-pdf-using-itextsharp  pageRectangle reader.GetPageSizeWithRotation pageIndex PdfContentByte pdfData stamper.GetUnderContent pageIndex pdfData.SetFontAndSize.. pdfData.BeginText pdfData.ShowTextAligned PdfContentByte.ALIGN_CENTER LipikaChatterjee pageRectangle.Width 2 pageRectangle.Height.. rect reader1.GetPageSize i  Get the ContentByte object  PdfContentByte cb stamper.GetUnderContent i  Tell the CB that the next commands.. 
 |