Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HorizontalAlignment on image not working in PdfPCell in itextsharp

I am adding a image in PdfPCell and i want that to be center aligned. For that i used following code but its not working

            PdfPTable Outertable = new PdfPTable(1);
            PdfPCell celltop = new PdfPCell(new Phrase(" "));
            iTextSharp.text.Image img10 = iTextSharp.text.Image.GetInstance(@"F:\TestPDFGenerator\TestPDFGenerator\TestPDFGenerator\Sumit.JPG");
            img10.ScaleAbsolute(50, 1);
            celltop.AddElement(img10);
            celltop.HorizontalAlignment = Element.ALIGN_CENTER;
            Outertable.AddCell(celltop);

please can you tell where i am wrong

Thanks

like image 213
Sumit Gupta Avatar asked Sep 30 '11 19:09

Sumit Gupta


1 Answers

You need to set the alignment on the image, not the cell:

img10.Alignment = iTextSharp.text.Image.ALIGN_CENTER;
like image 117
Chris Haas Avatar answered Sep 19 '22 01:09

Chris Haas