How can I put a watermark image on every page?
See original GitHub issueHi
I am successfully using this package and I think it great.
I have now been told that:
PDF content must have DRM (watermarks, social stamps) to ensure that the IP of content is protected.
I have some text available for each document that represents a copyright statement along the lines of:
copyright:'© My Group Publishing Limited'
Have you any idea how I would go about achieving this?
Thanks
Issue Analytics
- State:
- Created 8 years ago
- Reactions:1
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Add a watermark that appears on every page - Microsoft Support
Click View > Views, and then select Master Page. · Click the master page you want to add the watermark to, and then...
Read more >Apply watermark to all pages in a Word document - ExtendOffice
You can easily apply watermark to all pages in a Word Document by the Watermark feature easily. Please do as follows: Click Design...
Read more >How to add a watermark: in Word, to one or all pages - CCM.net
Open your document in Microsoft Word and click on Design, then select Watermark. Finally, you can choose a watermark from a list of...
Read more >Add watermarks and background objects in Pages on Mac
Click one of the object buttons in the toolbar to add a text box, shape, or image to any page in the section,...
Read more >How to Insert Watermarks on Specific ... - Erin Wright Writing
How to Insert a Custom Watermark on a Specific Page · Select the Design tab in the ribbon (see figure 1). · Select...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
So, what is the conclusion here please? Is it possible or not?
Clarifying: The
position: fixed
trick did not work for me.Narrating the gist which demonstrates how a solution could have looked:
markdown-pdf
being passed--remarkable-options '{\"html\":true}'
to enable parsing of inline HTML from the Markdown input.doc.md
are HTML, specifying adiv
-element with anid
attribute, and the text that should be contained in the watermark. (This was done because there is no way of expressing adiv
element just in Markdown, and we need a way to refer to the watermark specifically, to style it.)div
’sid
and sets it to be positioned in a fixed position, 20% downward, and 50% across the page.I was expecting to happen is for the
div
containing the watermark text to be floating in the middle of each page, above everything else. The idea was to then to addopacity: 0.2
to the watermark’s CSS, to make it mostly transparent.What actually happens is that it doesn’t appear at all. I can’t explain why, but maybe this is something to start from.