> ## Documentation Index
> Fetch the complete documentation index at: https://resources.latex-cloud-studio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Fix Image and Path Errors in LaTeX

> Solve image not found errors in LaTeX by correcting paths, file extensions, and compiler compatibility.

Image path issues are one of the most common LaTeX build blockers.

## Typical Errors

* `File 'figure1' not found`
* `Cannot determine size of graphic`
* `Unknown graphics extension`

## Fix Workflow

1. Confirm file exists in project tree.
2. Use relative paths from main file.
3. Match extension compatibility with compiler.
4. Avoid spaces in filenames.

## Example

```latex image-paths.tex theme={null}
\usepackage{graphicx}
\graphicspath{{figures/}{images/}}

% Good
\includegraphics[width=0.7\textwidth]{architecture.pdf}
```

## Related Pages

* [Inserting images](/learn/latex/figures/inserting-images)
* [Working with images](/learn/latex/how-to/working-with-images)
