[Tex/LaTex] How to: Header on every page, with figures!

graphicsheader-footer

I'm writing a document to my college and it requires a header on every page with two logos and some text, as shown below:

enter image description here

Here are the images:

enter image description here

enter image description here

Any ideas on how to do it? I have tried with the package fancyhdr, but I just couldn't make the figures work with it. The document class is article.

Please note that this header must be on the top of every page of the document and not on just particular ones.

Best Answer

Here is a solution, with geometry and titleps, instead of fancyhdr:

\documentclass{article}

\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{microtype}
\SetTracking[no ligatures={f}]{encoding=*}{40}
\usepackage{graphicx, array}
\usepackage[headheight=136pt, top=6.5cm]{geometry}

\usepackage{titleps}
\usepackage{lipsum} %
\newpagestyle{myheader}{%
\sethead{\includegraphics{htFCS}}{\sffamily\large\raisebox{6ex}{\parbox{6cm}{\centering\lsstyle%
  Centro Universitário da FEI\\[3ex]Projeto de Iniciação Científica}}}{\scalebox{0.75}{\includegraphics{aNF04}}}
\headrule}
\pagestyle{myheader}

\begin{document}

\section{Section One}
\lipsum

\end{document} 

enter image description here