我在文档中添加图像元素(对齐 = 左),然后添加一小段。一切正常,但现在我需要添加另一个与图像不对齐的段落(我需要在图像下方而不是图像右侧添加段落)
例如,在 html 上,您可以使用样式属性:“clear:both”。
语言是 Visual Basic 和 iText 的最后一个版本
_image = iTextSharp.text.Image.GetInstance(myimage)
_image.Alignment = iTextSharp.text.Image.ALIGN_LEFT + iTextSharp.text.Image.TEXTWRAP
_document.add(_image)
_document.add(New Paragraph("This text will be show on the right of the image"))
_document.add(New Paragraph("Also this text will be show on the right of the image but I want the text on the bottom of the image"))
你可以看到这个http://www.pasteall.org/pic/show.php?id=53656
有人可以帮助我吗?感谢大家