作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在 PdfPCell 中添加图像,我希望它居中对齐。为此,我使用了以下代码,但它不起作用
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);
你能告诉我哪里错了吗
谢谢
最佳答案
您需要在图像上设置对齐方式,而不是单元格:
img10.Alignment = iTextSharp.text.Image.ALIGN_CENTER;
关于c# - 图像上的 HorizontalAlignment 在 itextsharp 的 PdfPCell 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7615259/
我是一名优秀的程序员,十分优秀!