使用 iTextSharp 创建 PDF 时添加图像水印
想知道这是否可能。看到很多关于在创建 pdf 并保存在磁盘后添加水印的帖子。但是在创建文档期间如何添加图像水印。我知道如何将图像添加到文档中。但我如何定位它,使其出现在页面末尾。
Wonder if this possible. Saw many posts on adding watermark after the pdf is created and saved in disk. But during creation of document how do i add a image watermark. I know how to add a image to document. But how do i position it such that it comes at the end of page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于 C#,请使用此代码...
For C#, use this code...
这本质上与添加页眉或页脚相同。
您需要创建一个实现
PdfPageEvent
的类,并在OnPageEnd
中获取页面的 PdfContentByte,并在其中绘制图像。使用绝对位置。注意:您可能想从 PdfPageEventHelper 派生,它具有所有页面事件的空实现,因此您只需要编写您真正关心的方法。
注意:除非您的图像大部分是透明的,否则将其绘制在页面顶部会掩盖很多东西。 IIRC(“如果我没记错的话”),由 iText 添加的 PNG 和 GIF 文件将自动被正确屏蔽,允许它们下面的内容显示出来。
如果您想在所有内容下方添加不透明图像,则应该重写
OnStartPage()
。这是 Java,但转换它主要是方法名称大写和交换属性访问的 get/set 调用。
This is essentially identical to adding a header or footer.
You need to create a class that implements
PdfPageEvent
, and in theOnPageEnd
, grab the page's PdfContentByte, and draw your image there. Use an absolute position.Note: You probably want to derive from PdfPageEventHelper, it has empty implementations of all the page events, so you just need to write the method you actually care about.
Note: Unless your image is mostly transparent, drawing it on top of your page will cover up Many Things. IIRC ("If I Recall Correctly"), PNG and GIF files added by iText will automatically be properly masked, allowing things under them to show through.
If you want to add an opaque image underneath everything, you should override
OnStartPage()
instead.This is Java, but converting it is mostly a matter of capitalizing method names and swapping get/set calls for property access.
这是已接受的答案对 C# 的移植,对我有用。我使用的是 A4 页面尺寸:
定义此
BackgroundImagePdfPageEvent
类:然后,在创建文档时:
This is the accepted answer's port to C#, and what worked for me. I'm using an A4 page size:
Define this
BackgroundImagePdfPageEvent
class:Then, when creating your document: