I am trying to remove parts of my image so it looks like it is inside of a shape (tikzpicture). I don't have an idea how to do it, I guess that my LaTeX code (see below) has to be thought over.
This is my output right now:
And this is how it should look like:
This is my LaTeX Code:
\documentclass[a4paper,12pt,oneside]{scrreprt}
\usepackage{tikz}
\usepackage{xcolor}
\usepackage{graphicx}
\begin{document}
\clearpage
\vspace*{-2.5cm}
\begin{tikzpicture}[remember picture,overlay]
\fill[color = red] (-3.5cm, -0.5cm) node{}
-- (-3cm,-5cm) node{}
-- (\paperwidth,-6cm) node{}
-- (\paperwidth,0.5cm) node{};
\end{tikzpicture}
\begin{minipage}[ht]{0.28\textwidth}
\begin{tikzpicture}
\node[anchor=south west,inner sep=0] (image) at (0,0) {\includegraphics[width=0.29\paperwidth]{Test}};
\end{tikzpicture}
\end{minipage}
\end{document}
Thanks in advance for any help!


