I am using Texmaker to create a document with pdflatex. When I add an image to it (no spaces in the path), it takes an approperiate amount of space, it shows a black border, however no image shows up. I get no message implicating a missing file.
In preamble:
\usepackage{graphicx}
\usepackage{amsthm}
\usepackage[utf8]{inputenc}
\usepackage{polski}
\usepackage[polish]{babel}
\usepackage[nottoc]{tocbibind}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm]{geometry}
\usepackage{authoraftertitle}
\usepackage{enumitem}
\usepackage{fixme}
\usepackage{url}
\graphicspath{ {img/} }
Adding graphics:
\includegraphics[width=1\linewidth]{email-invitation}
Result:

What may I be doing wrong?
Update:
Here is a minimal working example:
\documentclass[draft]{report}
\usepackage{graphicx}
\begin{document}
\includegraphics{test}
\end{document}
Seems plain simple...
\documentclass[draft]{...}? ;-) Please help us to help you and add a minimal working example (MWE) that illustrates your problem. It will be much easier for us to reproduce your situation and find out what the issue is when we see compilable code, starting with\documentclass{...}and ending with\end{document}. – Mar 01 '15 at 10:11draftmeans (among other things): speed things up by not including the images – David Carlisle Mar 01 '15 at 10:28[draft]then – Mar 01 '15 at 10:28