> For the complete documentation index, see [llms.txt](https://docs.flatredball.com/flatredball/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.flatredball.com/flatredball/tiled-plugin/flatredball-tilegraphics-layeredtilemap/fromtiledmapsave.md).

# FromTiledMapSave

### Introduction

FromTiledMapSave loads a TMX file into a LayeredTileMap. This method populates all internal properties including the LayeredTileMap's Layers and Collisions properties. Internally this method loads necessary PNG files using the argument contentManager.

Typically this method is called in generated code by adding a TMX file to a Level screen in the FlatRedBall Editor.

### Tile Layer Format

TMX files can be converted to LayeredTileMaps if they are using any of the following Tile Layer Formats:

* Base64 (uncompressed)
* Base64 (gzip compressed)
* Base64 (Zstandard compressed)
* CSV

<figure><img src="/files/JOf84D1G0xHrFCf4lyxr" alt=""><figcaption><p>Tile Layer Format set to CSV in Tiled</p></figcaption></figure>

Note that Base64 zlib compressed can be used, but to do this you must:

1. Add a reference to the Ionic.Zlib.Core nuget package
2. Add `SUPPORTS_ZLIB` to your precompile directives

Using an unsupported compression format will result in a runtime error:

```
Does not support zlib, try using GZIP compression or csv format
```

<figure><img src="/files/5rXqcscNmG7fEST8R0r2" alt=""><figcaption><p>Error message about using format that is unsupported</p></figcaption></figure>


---

# 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, and the optional `goal` query parameter:

```
GET https://docs.flatredball.com/flatredball/tiled-plugin/flatredball-tilegraphics-layeredtilemap/fromtiledmapsave.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
