> For the complete documentation index, see [llms.txt](https://docs.scenic.tools/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.scenic.tools/guide/external-configuration/backdrop.md).

# Backdrop

Setting up a backdrop allows you to use an image in the Schematic view for reference. Most image formats are supported.

![A hand-drawn photographed floorplan displayed as reference inside the Schematic view](/files/-M7T1qvn6tgx-FfEXY72)

Position, scaling, rotations opacity and the default Schematic view angle can be all set through the respective JSON configuration properties.

Here's the default configuration file:

```
{
	"Backdrop": {
		"Path": "plan.png",
		"Scale": "1",
		"TranslateX": "0",
		"TranslateY": "0",
		"Rotate": "0",
		"Opacity": ".5",
		"View": "Top"
	}
}

```

And here is an example of a configuration file adjusted to scale the image higher and the Area setting added to change the size of the grid:

```
{
	"Backdrop": {
		"Path": "plan.jpg",
		"Scale": "2",
		"TranslateX": "0",
		"TranslateY": "0",
		"Rotate": "0",
		"Opacity": ".5",
		"View": "Top"
	},
  "Area": {
    "Width": 20,
    "Length": 10
  }
}

```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.scenic.tools/guide/external-configuration/backdrop.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
