我正在使用itextsharp将html转换为pdf.我必须在图像旁边放置文字而不是图像下方.在html中,我能够在图像旁边放置文本,但在pdf中,文本行在图像之后开始
请帮忙.
解决方法
既然你提到HTML,你就能理解块和内联显示,对吗?通过类比,iTextSharp的默认图像显示是块.要内联图像对象,您需要:
>将图像添加到Chunk对象
>在短语对象中添加文字
>然后将这些对象添加到Paragraph对象
像这样的东西:
Image image = Image.GetInstance(imagePath); Paragraph p = new Paragraph(); p.Add(new Phrase("Text next to the image ")); p.Add(new Chunk(image,0)); p.Add(new Phrase(" and text after the image.")); document.Add(p);
将上面的imagePath替换为图像的物理路径