gpt4 book ai didi

c# - 图像上的 Horizo​​ntalAlignment 在 itextsharp 的 PdfPCell 中不起作用

转载 作者:太空狗 更新时间:2023-10-29 22:54:15 24 4
gpt4 key购买 nike

我在 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# - 图像上的 Horizo​​ntalAlignment 在 itextsharp 的 PdfPCell 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7615259/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com