protected kawitacyjny btnPrint_Click (przedmiot nadawca, EventArgs e)
{
Dokument doc = nowy dokument ();
doc.SetPageSize (PageSize.A4.Rotate ());
doc.NewPage ();
PdfWriter pisarz = PdfWriter.GetInstance (doc, Response.OutputStream);
Response.ContentType = "zastosowanie/pdf";
Response.AddHeader ("Zadawalać-Usposobienie", "doczepianie; filename=Myfile" + lblDate.Text + ".pdf");
doc. Otwierać ();
iTextSharp.text.Rectangle strona = doc.PageSize;
//date
Akapit p = nowy Akapit (lblDate.Text, nowy iTextSharp.text.Font (iTextSharp.text.Font.DEFAULTSIZE, 12f));
p.Alignment = (1); //this być wyrównywać
doc. Dodawać (p);
//logo
iTextSharp.text.Image logo = iTextSharp.text.Image.GetInstance (Request.MapPath ("~/images/logoPDF.jpg"));
logo. Wyrównanie = iTextSharp.text.Image.ALIGN_LEFT;
logo.ScalePercent (20f);
doc. Dodawać (logo);
|