> For the complete documentation index, see [llms.txt](https://academy.any2info.com/any2info-academy/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://academy.any2info.com/any2info-academy/no-code-platform/data-studio/data-hubs/toolbox/import-and-export/files/export-image-to-file.md).

# Export Image to File

**Category:** Files

**Version:** 1.0

**Last updated:** June 15, 2026

**Author:** Any2Info

***

### Description

The Export Image to File node allows you to save images from a data flow to a file system location.

Images are retrieved from a column in the input data and written to the selected destination folder. A file name can be provided directly or retrieved from a column in the input data.

The node processes each row individually and creates a separate file for each image.

The process works as follows:

1. Select a valid File Source connection.
2. Select the destination Folder.
3. Select the Image Column that contains the image data.
4. Specify the File Name or select a column containing the file name.
5. Select the output format.
6. Execute the node.
7. The images are saved to the selected destination.

***

### Configuration Options

#### File Source

Select the file system connection that should be used.

The selected connection determines where the image files will be stored.

This field is required.

#### Folder

Specifies the destination folder where the image files should be created.

This field is required.

#### Image Column

Specifies the column that contains the image data.

This field is required.

The image data may contain:

* Binary image data
* Base64 encoded image data

Each row is processed individually.

#### File Name

Specifies the name of the file that should be created.

The value can be:

* A fixed file name
* A column containing the file name

This field is required.

Examples:

* `invoice.png`
* `photo.jpg`
* `[FileName]`

#### Save As

Specifies the output format of the generated image file.

Available options:

| Format | Description                      |
| ------ | -------------------------------- |
| PDF    | Save the image as a PDF document |
| JPG    | Save the image as a JPEG image   |
| PNG    | Save the image as a PNG image    |

***

### Output

This node does not return image data.

The images are written directly to the configured destination folder.

***

### Tips & Best Practices

* Ensure that the Image Column contains valid image data.
* Use dynamic file names to prevent files from overwriting each other.
* Use PNG when image quality should be preserved.
* Use JPG when smaller file sizes are preferred.
* Verify that the selected destination folder is writable by the configured connection.

***

### Changelog

| Version | Date          | Change                               |
| ------- | ------------- | ------------------------------------ |
| 1.0     | June 15, 2026 | Initial documentation version added. |


---

# 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://academy.any2info.com/any2info-academy/no-code-platform/data-studio/data-hubs/toolbox/import-and-export/files/export-image-to-file.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.
