使用 itextsharp 在 pdf 中并排添加图像
我正在使用 itextsharp 将一些数据写入 pdf。我正在添加 2 张图片。我使用了这段代码:
iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance(System.Windows.Forms.Application.StartupPath + "\\t.jpg");
iTextSharp.text.Image img2 = iTextSharp.text.Image.GetInstance(System.Windows.Forms.Application.StartupPath + "\\teiasLogo.jpg");
pdfDocCreatePDF.Add(img);
pdfDocCreatePDF.Add(img2);
我想看到他们这样:
因此,我不希望图像之间有换行符 ( \n ),我需要空格。我怎样才能做到这一点?谢谢..
I am writing some data to the pdf using itextsharp. I am adding 2 images. I used this code:
iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance(System.Windows.Forms.Application.StartupPath + "\\t.jpg");
iTextSharp.text.Image img2 = iTextSharp.text.Image.GetInstance(System.Windows.Forms.Application.StartupPath + "\\teiasLogo.jpg");
pdfDocCreatePDF.Add(img);
pdfDocCreatePDF.Add(img2);
I want to see them like that :
As a result I don't want new line ( \n ) between the images, I want spaces. How can I do that? Thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 PdfPTable 生成它。创建一个新表。然后您可以将图像分配给每个单元格(边框=0)。
You can produce that by using PdfPTable. Create a new table. Then you can assign your images to each cell (with border=0).