在运行时向 RDLC 添加控件
我需要能够将所有用户上传的图像动态添加到我的报告中。我将所有图像存储在一个位置,并且将所有图像的名称存储在数据库中。
这可以通过 RDLC 实现吗?还是我必须生成 pdf,然后使用 iTextSharp 之类的工具将图像插入其中?
I need to be able to add all of the user uploaded images to my report dynamically. I have all of the images stored in one place and I have the name of all the images stored in the database.
Is this possible with an RDLC or would I have to generate a pdf and then insert my images into that with something like iTextSharp?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的。
如果要显示多个图像,使用 tablix 或列表列出所有内容
还有一件事:我必须将路径设置为 URI 才能使其正常工作。上次我尝试时,字符串不起作用。
Yes it is possible.
If you have multiple images to display, use a tablix or a list to list all of them
One more thing: I had to set my path as an URI to make it work. A string wouldn't work last time I tried.
我通过生成仅包含图像的 PDF,然后使用 iTextSharp 合并两个 PDF 来解决这个问题。
I solved this by generating a PDF with just images and then I merge the two PDFs with iTextSharp.