I want to put a draft watermark using the below script but the problem is that the watermark don't come over the images and I want it to come over it.
\usepackage{draftwatermark}
\SetWatermarkText{DRAFT}
\SetWatermarkScale{1}
I want to put a draft watermark using the below script but the problem is that the watermark don't come over the images and I want it to come over it.
\usepackage{draftwatermark}
\SetWatermarkText{DRAFT}
\SetWatermarkScale{1}
The problem is that the draftwatermark places the material in the background, so other elements (for example, figures and listings) might cover the included material; to prevent this, instead of using the draftwatermark package, you can use the xwatermark package; the starred variant of \newwatermark places the material in the foreground which seems to be what you need. A little example:
First, with the unstarred variant (material on the background, so a figure will be placed on top of it):
\documentclass{article}
\usepackage[printwatermark]{xwatermark}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage{lipsum}
\newwatermark[allpages,color=red!50,angle=45,scale=3,xpos=0,ypos=0]{DRAFT}
\begin{document}
\lipsum[1-2]
\begin{figure}[!ht]
\centering
\includegraphics[width=3cm]{example-image-a}
\end{figure}
\lipsum[1-2]
\end{document}

And now, with the starred variant (material on the foreground, so it will appear on top of figures):
\documentclass{article}
\usepackage[printwatermark]{xwatermark}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage{lipsum}
\newwatermark*[allpages,color=red!50,angle=45,scale=3,xpos=0,ypos=0]{DRAFT}
\begin{document}
\lipsum[1-2]
\begin{figure}[!ht]
\centering
\includegraphics[width=3cm]{example-image-a}
\end{figure}
\lipsum[1-2]
\end{document}

\SetWatermarkText{P.s. Page limit 25...}. I used this watermarking here with \usepackage{blindtext} \usepackage{draftwatermark} but this technique did not work with the packages. You don't use any extra package?!
– hhh
Nov 15 '14 at 06:23
\newwatermark: ! Missing number, treated as zero.<to be read again>X ...=60,scale=3,xpos=0,ypos=0]{DRAFT}
– s.k
Jun 25 '17 at 13:29
xwatermark but the sad news is, that there is no development in the package and I think it needs to be adopted to recent LaTeX Versions. I'll try to contact the author of the package.
– Bastian Ebeling
Mar 17 '21 at 05:51
\SetWatermarkLightness{0}? – karlkoeller Jun 13 '13 at 06:00.pdfformat. What kind of images are you dealing with? Can you add some more details in your question? – karlkoeller Jun 13 '13 at 07:23