[Tex/LaTex] Why does the image not appear

graphics

I'm using IEEEtran to format an article, and I wanted to include an image. I included the graphicx and hyperref packages, and used the following code, like normal, to include an image.

\begin{figure}[!t]
\centering
\includegraphics[width=3in]{fetch}
\caption{Pipeline: Fetch Instruction}
\label{fig:fetch}
\end{figure}

What appears, however, is this:

Example

Fetch.png is a file in the directory, and if I remove it, pdflatex errors instead of producing an output. I'm using MiKTeX 2.9 on Windows 7. Any ideas?

Best Answer

You have the draft option enabled, most likely as class option, which makes graphicx to display images like this. Load graphicx with the final option to overwrite this. Note that options of the class are global and are passed to all packages, but can still be overwritten by explicit package options.