I am drawing a watermark with tikz underneath the footer, the watermark is basically a single node with text. Is there an option to make this text unselectable in the final pdf? The letters are very large and essentially decorative, and at the moment the cursor can still highlight and select the text, which is a behaviour I would like to avoid if possible.
This is the tikz code, FWIW.
%Page Number on Right Hand Side
\newcommand\transparentNumberRHS{%
\noindent
\tikzset{external/export next=false}
\begin{tikzpicture}[remember picture, overlay]
\node[inner sep=0,outer sep=0,opacity=0.05,scale=15,anchor=south east] at (1.75in,-1.8in) {\HUGE\thepage};
\end{tikzpicture}%
}
Here is a complete set of code to reproduce the problem:
\documentclass[10pt]{memoir}
\usepackage{graphicx,tikz}
\chapterstyle{ell} %Default Chapter Style
\copypagestyle{chapter}{plain} %The page style for chapters
%Chapter Page Number on Right Hand Side
\newcommand\transparentNumberRHS{%
\noindent%
\begin{tikzpicture}[remember picture, overlay]%
\node[inner sep=0,outer sep=0,opacity=0.05,scale=15,anchor=south east] at (1.75in,-1.8in) {\HUGE\thepage};%
\end{tikzpicture}%
}%
\makeoddfoot{chapter}{}{}{\transparentNumberRHS}%
\begin{document}
\chapter{Chapter 1}
\end{document}
Which produces the following. I have highlighted how the text can be selected. Actually it is selected in preference to the main body text if the page contains actual content, which introduces a practicality issue for the reader.

accsupworks well often (not always) – percusse Mar 11 '17 at 12:55accsuppackage. But you also could generate different pixel based watermarks (e. g.watermark_1.png,watermark_2.pngand so on) and then include them uniquely on every page. See also one of my questions: http://tex.stackexchange.com/questions/347121 – Dr. Manuel Kuehner Mar 12 '17 at 17:44