如何使用iTextSharp绘制轮廓颜色为红色、内部颜色为灰色的水印文本
如何使用iTextSharp绘制轮廓颜色为红色、内部颜色为灰色的水印文本
How to draw watermark text whose outline color is red and inner color is gray using iTextSharp
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用水印,我假设您正在谈论
PdfStamper
。如果是这样,当您使用GetOverContent()
或GetUnderContent()
获得原始PdfContentByte
时,您只需要几个属性设置。PdfContentByte.SetLineWidth(single)
- 设置描边粗细PdfContentByte.SetColorFill(BaseColor.GRAY)
- 设置填充颜色。您还可以使用任何其他颜色方法,例如SetRGBColorFill()
或SetCMYKColorFill()
PdfContentByte.SetColorStroke(BaseColor.RED)
- 设置描边颜色PdfContentByte.SetTextRenderingMode(PdfContentByte.TEXT_RENDER_MODE_FILL_STROKE)
- 您想要绘制文本的标志带有填充和描边下面是一个完整的 WinForms 应用程序,目标是 iTextSharp 5.1.1.0,它将所有内容组合在一起。您应该能够相当轻松地将其移至 ASP.Net,并在需要时将其转换为 C#。
If you are using a watermark I'm assuming that you are talking about a
PdfStamper
. If so, once you've got a rawPdfContentByte
using eitherGetOverContent()
orGetUnderContent()
there's just a couple of properties that you need to set.PdfContentByte.SetLineWidth(single)
- set the stroke thicknessPdfContentByte.SetColorFill(BaseColor.GRAY)
- set the fill color. You can also use any of the other color methods such asSetRGBColorFill()
orSetCMYKColorFill()
PdfContentByte.SetColorStroke(BaseColor.RED)
- set the stroke colorPdfContentByte.SetTextRenderingMode(PdfContentByte.TEXT_RENDER_MODE_FILL_STROKE)
- flag that you want text to be draw with both a fill and a strokeBelow is a full working WinForms app targetting iTextSharp 5.1.1.0 that puts it all together. You should be able to move this to ASP.Net fairly easily as well as convert it to C# if needed.