I tried to solve this with tables, but the alignment didn't turn out good. And because I am very confused, if I should even use a table aproach or a minipage or a tabspace, I wondered, if someone could enlighten me, based on a specific demo.
This should be a regular task for anybody who has to create corporate or other official documents - creating a headline with logos and text, like here:

But how to accomplish this in Latex - the best way possible?
There are some requirements, like:
- has to span over entire page
- individual vertical and horizontal alignment is possible
These are some of my attemps, which did not work out:
With tables:
\documentclass[
pdftex,
a4paper,
11pt,
DIV15,
BCOR20mm,
parskip,
numbers=noenddot]{scrbook}
\usepackage{graphics}
\usepackage[pdftex]{graphicx}
\begin{document}
\noindent\begin{tabular*}{\columnwidth}{@{\extracolsep{\stretch{1}}}*{2}{l}@{}}
\includegraphics[scale=0.5]{left_demo.png} & \includegraphics[height=45px]{right_demo.png} \\
\end{tabular*}
\end{document}
With minipage:
\documentclass[
pdftex,
a4paper,
11pt,
DIV15,
BCOR20mm,
parskip,
numbers=noenddot]{scrbook}
\usepackage{graphics}
\usepackage[pdftex]{graphicx}
\begin{document}
\begin{figure}[h]
\begin{minipage}[b]{25mm}
\includegraphics[width=25mm,clip]{left_demo.png}
\end{minipage}
\begin{minipage}[b]{12 cm}
{\sffamily
somedemo txt abcdefghij,\\
texttextte txt texttexttextetscter\\
demodemode demodemode\\
}
\end{minipage}
\end{figure}
\end{document}
These are the demo-pictures I used:

