我前天开始使用PDFSharp,并使用以下代码将图像添加到单元格中:
Section section = this.document.AddSection();
Table table1 = section.Headers.Primary.AddTable();
Column column = table1.AddColumn("8.5cm");
column.Format.Alignment = ParagraphAlignment.Right;
column = table1.AddColumn("8.5cm");
column.Format.Alignment = ParagraphAlignment.Right;
Row row = table1.AddRow();
Image image = row.Cells[0].Elements.AddImage(@"C:\testdump\logo.jpg");
image.LockAspectRatio = true;
image.RelativeVertical = RelativeVertical.Line;
image.RelativeHorizontal = RelativeHorizontal.Margin;
image.Top = ShapePosition.Top;
image.Left = ShapePosition.Left;
image.WrapFormat.Style = WrapStyle.None;
我在这之后添加了另一张表:
Table table2 = section.AddTable();
单元格中的图像与table2重叠。有人知道为什么会这样吗?
答案 0 :(得分:0)
似乎向第二个表添加“空白”行解决了问题。不确定如何解决重叠问题。
答案 1 :(得分:0)
AFAIK行
image.WrapFormat.Style = WrapStyle.None;
创建一个自由浮动的图像。图像从单元格中获取其位置,但不会影响表格的布局。
如果要将图像与文本或其他元素重叠,请使用WrapStyle.None。