I'm doing a LaTeX beamer and am having a problem with \includegraphics. Around the image, a thin, green border is shown, which won't disappear in the presentation. This problem (or feature?) only occurs with one specific image and only when included as the original PDF (I want to keep the PDF to avoid loss in quality). I first thought, the problem stems from the package hyperref, so I tried to remove meta data, but nothing did change whatsoever.
Here is a MWE:
\documentclass[11pt]{beamer}
\begin{document}
\begin{frame}
\begin{figure}[H]
\centering
\includegraphics[height=7.8cm, width=9.4cm]{Pictures/Stevie}
\label{fig:Stevie}
\end{figure}
\end{frame}
\end{document}
Since the error only exists when using this one specific PDF, I provide the source image here: https://1drv.ms/b/s!An_8vYlVpuen3l5rtIgFKbYlZCDR

\includegraphics[..., trim=<trim params>,clip]{steve_jobs}whereclipspecifies the lengths you want to remove from the left/bottom/right/top. See Crop an inserted image? – Werner Jan 29 '19 at 23:09