通过渲染插件添加水印

时间:2013-05-30 05:17:45

标签: css grails rendering

我正在使用grails中的渲染插件创建pdf。我需要在我的pdf中添加水印(它的图像)。我不知道如何在其中添加水印。我在google上搜索过,但是使用渲染插件没有关于水印的信息。

1 个答案:

答案 0 :(得分:0)

此问题实际上与Grails或Rendering插件无关。问题与css有关。

为pdf添加background-image样式。以下内容将为pdf中的所有页面添加水印。

@page {
   background-image: url("your image here");
   background-repeat: no-repeat;
   background-position: center;
}