[Tex/LaTex] Creating this vectorised watermark in TikZ

tikz-pgfwatermark

I found this wave like image on Vecteezy:

enter image description here

I would like to create a similar watermark in colour using TikZ as an interesting pursuit. However, I am unsure on where to start. Any approach would be appreciated but I would favour updating the \tikzset to achieve this. The Tikx examples website do not contain an example for working with watermarks.

Any help would be appreciated.

Best Answer

Same method as @percusse, but with three families and opacity. In the original image we can see small variations of the line width, which are not easy to obtain in tikz (but if you really want them you can fill between a pair of close paths).

\documentclass[tikz]{standalone}
\tikzset{
}
\begin{document}
  \begin{tikzpicture}[opacity=.35]
    \clip (1,-5) rectangle (11,1);
    \foreach \x in {0,0.05,...,2}{
      \draw (0,\x) .. controls (4-\x,-4-3*\x) and (11-2*\x,4-3*\x) .. (12,-5+3*\x);
      \draw (0,\x-1) .. controls (4-\x,\x-2) and (11-2*\x,-4-3*\x) .. (12,-3+3*\x);
      \draw (0,\x-3) .. controls (4-\x,\x-2) and (11-4*\x,-1-4*\x) .. (12,-5+3.5*\x);
    }
  \end{tikzpicture}
\end{document}

screenshot

Related Question