Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 grails 中的渲染插件创建 pdf。我需要在我的 pdf 中添加水印(它的图像)。我不知道如何在其中添加水印。我在谷歌上搜索,但使用渲染插件没有关于水印的内容。
这个问题实际上与 Grails 或 Rendering 插件无关。问题与css.
css
为 pdf添加background-image样式。下面将为pdf中的所有页面添加水印。
background-image
@page { background-image: url("your image here"); background-repeat: no-repeat; background-position: center; }