[Tex/LaTex] Trouble With Inserting An Image into Overleaf LaTeX

graphicsoverleaf

I am currently writing TeX on Overleaf.
I need to insert an image of a trapezoid.

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{systeme}

\usepackage{graphicx}
\graphicspath{ {C:/Users/genericname/Desktop/} }

\begin{document}
\includegraphics{trapezoid.png}
\end{document}

This is not working even though I know there is a .png file named trapezoid on my desktop. I am using overleaf to write this, so I am not sure if this would make a difference.

The error message says, "Package pdftex.def Error: File `trapezoid.png' not found."

Best Answer

You have to upload the image on your overleaf project (Project - Files - upload...). Then you should write in the .tex file simply

\includegraphics{trapezoid.png}
Related Question