\includegraphics で問題が発生する

\includegraphics で問題が発生する

私は LaTeX 初心者なので、この問題には簡単な修正方法があるかもしれないことはわかっていますが、自分では解決できません。次のコードを使用して、ドキュメントに画像を挿入しようとしています。

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[h]
     \centering
     \includegraphics[width=1\textwidth]{slide_20.jpg}
     \caption{Here is my image}
     \label{image-myimage}
\end{figure}
\end{document}

しかし、次のエラーが繰り返し発生します:

! Package pdftex.def Error: File 'slide_20.jpg' not found.

画像を .tex ドキュメントと同じフォルダに保存しました。Mac で TeXworks を使って作業しています。複数の画像で試してみましたが、うまくいきません。

関連情報