我正在使用grails中的渲染插件创建pdf。我需要在我的pdf中添加水印(它的图像)。我不知道如何在其中添加水印。我在google上搜索过,但是使用渲染插件没有关于水印的信息。
答案 0 :(得分:0)
此问题实际上与Grails或Rendering插件无关。问题与css
有关。
为pdf添加background-image
样式。以下内容将为pdf中的所有页面添加水印。
@page {
background-image: url("your image here");
background-repeat: no-repeat;
background-position: center;
}