In the following code, how can I replace the "Go to ToC" with this image in the output pdf?
\documentclass{article}
\usepackage[top]{background}
\usepackage{lipsum}
\pagestyle{empty}
\usepackage[]{hyperref}
\usepackage{blindtext}
\SetBgContents{\hyperlink{toc}{Go to ToC}}
\SetBgAngle{0}
\SetBgColor{black!40}
\SetBgScale{1}
\SetBgHshift{50}
\SetBgVshift{-9}
\begin{document}
\addtocontents{toc}{\protect\hypertarget{toc}{}}
\tableofcontents\newpage
\section{sec one}
\blindtext
\newpage
\section{sec two}
\blindtext
\end{document}
Edit:
Please note that the image should be created with something like tiKz. Because I want to send the output pdf to someone else.
