使用itextsharp将图像html旁边的文本放置到pdf

前端之家收集整理的这篇文章主要介绍了使用itextsharp将图像html旁边的文本放置到pdf前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用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替换为图像的物理路径

原文链接:https://www.f2er.com/html/231630.html

猜你在找的HTML相关文章