I am writing a technical report with a background figure on the cover. I want to add a fade-out effect to the image and I have found this answer How to add a gradient fade-out effect to an image? but with the beamer class.
Is there a way to have the same effect with the article class?
My MWE is the following:
\documentclass[12pt,twoside,titlepage]{article}
\usepackage{graphicx}
\usepackage{eso-pic}
\newcommand\BackgroundPic{%
\put(0,0){%
\parbox[b][\paperheight]{\paperwidth}{%
\vfill
\centering
\includegraphics[width=\paperwidth,height=\paperheight,%
keepaspectratio]{Textura.pdf}%
\vfill
}}}
\begin{document}
\begin{titlepage}
\AddToShipoutPicture*{\BackgroundPic}
\end{titlepage}
HOLA
\end{document}
Thank you
