使用 iTextSharp 我正在尝试对齐图像以使其嵌入段落中。我可以这样做:
iTextSharp.text.Image image;
image.Alignment = Image.ALIGN_RIGHT | Image.TEXTWRAP;
document.Add(image);
document.Add(new Paragraph("Large string of text goes here"));
但是图像出现在右上角,周围有文字(有点像 L)
我想要的是文本是几段,然后是下面有文本的图像(有点像 C)。有谁知道我将如何通过 iTextSharp 做到这一点?
编辑:
我也试过
iTextSharp.text.Image image;
image.Alignment = Image.ALIGN_RIGHT | Image.TEXTWRAP | Image.ALIGN_MIDDLE;
document.Add(image);
document.Add(new Paragraph("Large string of text goes here"));
但它显示在顶部的图像和下面的文本。没有文本换行生效。