1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27:
protected o btnPrint_Click vago (remetente do objeto, EventArgs e) { Original doc = novo documento (); doc.SetPageSize (PageSize.A4.Rotate ()); doc.NewPage (); Escritor de PdfWriter = PdfWriter.GetInstance (doc, Response.OutputStream); Response.ContentType = “aplicação/pdf”; Response.AddHeader (“Índice-Disposição”, “acessório; filename=Myfile” + lblDate.Text + “.pdf”); doc. Abrir (); página de iTextSharp.text.Rectangle = doc.PageSize; //date Parágrafo p = parágrafo novo (lblDate.Text, iTextSharp.text.Font novo (iTextSharp.text.Font.DEFAULTSIZE, 12f)); p.Alignment = 1; //this é alinha para centrar-se doc. Adicionar (p); //logo logotipo de iTextSharp.text.Image = iTextSharp.text.Image.GetInstance (Request.MapPath (“~/images/logoPDF.jpg”)); logotipo. Alinhamento = iTextSharp.text.Image.ALIGN_LEFT; logo.ScalePercent (20f); doc. Adicionar (logotipo);