As it stands, the content is simply too wide for the text block. It is probably easiest to set the scaling as a proportion of the block width.
TikZ is not needed or especially suitable here. You probably want to handle these as sub-figures of an overall figure. The subcaption package can help with this.
For example:
\documentclass[10pt,a4paper,landscape]{report}
\usepackage[margin=2cm,footskip=2cm]{geometry}
\usepackage{subcaption}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\centering
\caption{Some text above the whole figure.}
\begin{subfigure}{.3\textwidth}
\includegraphics[width=\linewidth]{example-image}
\caption{First, an exciting contribution by unknown artist.}
\end{subfigure}\quad
\begin{subfigure}{.3\textwidth}
\includegraphics[width=\linewidth]{example-image}
\caption{Second, an anonymous mystery.}
\end{subfigure}\quad
\begin{subfigure}{.3\textwidth}
\includegraphics[width=\linewidth]{example-image}
\caption{Finally, an inscrutable offering by artist unknown.}
\end{subfigure}
\end{figure}
\end{document}

If the text above isn't meant to be a caption, just use regular text. If you need to refer to the figures or sub-figures, just use \label{fig:whatever} after the relevant \caption(s).
EDIT
If you really need then to be in tikzpicture environments, that's fine. Just nest them inside the subfigures. You just need to alter the size of the images included, obviously, to make room.
\documentclass[10pt,a4paper,landscape]{report}
\usepackage[margin=2cm,footskip=2cm]{geometry}
\usepackage{subcaption}
\usepackage{tikz}
\begin{document}
\begin{figure}
\centering
\caption{Some text above the whole figure.}
\begin{subfigure}{.3\textwidth}
\centering
\begin{tikzpicture}
\node {\includegraphics[width=.9\linewidth]{example-image}};
\end{tikzpicture}
\caption{First, an exciting contribution by unknown artist.}
\end{subfigure}\quad
\begin{subfigure}{.3\textwidth}
\centering
\begin{tikzpicture}
\node {\includegraphics[width=.9\linewidth]{example-image}};
\end{tikzpicture}
\caption{Second, an anonymous mystery.}
\end{subfigure}\quad
\begin{subfigure}{.3\textwidth}
\centering
\begin{tikzpicture}
\node {\includegraphics[width=.9\linewidth]{example-image}};
\end{tikzpicture}
\caption{Finally, an inscrutable offering by artist unknown.}
\end{subfigure}
\end{figure}
\end{document}
