Image
The image component is used to display images. To add an image, link to an image using the URL setting. For example, add https://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/Photographer_Photographing_Nevada_Mountains.jpg/1920px-Photographer_Photographing_Nevada_Mountains.jpg
to the URL setting, and an image from wikipedia of a photographer photographing mounts will be added to your app.

By Noah Wulf - Own work, CC BY-SA 4.0, https://commons.wikimedia.org/w/index.php?curid=97062864
Displaying images from an attachment
Images can be uploaded as Attachments and you may wish to display these outside of a Table.
Data
Create a table called Landscapes with a category name and an attachment column for the images. Upload your images.

Design
-
In an app with a screen, add a Data Provider for the Landscapes table.
-
Add a Repeater to the data provider. This will add a container for each Landscapes row.
-
Add a Text component to display a title for each Landscapes row.
The Binding in this case is `
{{ [New Repeater].Landscapes.title }}
{{ [New Repeater].Landscapes.photographer }} {{ [New Repeater].Landscapes.date }}
` which will fetch and display a title, the name of the photographer, and the date saved in the table. -
Underneath the Text, add a data provider for the "Images". Attachments List column types which we created are saved in JSON Arrays.
-
Change the source of the data provider to JSON / CSV
-
Click the settings cog beside JSON / CSV and paste this binding inside it
{{ [New Repeater].Landscapes.images }}
-
Add a repeater so that each attachment image can be displayed.
-
Finally, add an Image component within the repeater. Paste the below binding inside the URL setting of the image component. Using JavaScript
return $("[New Data Provider 2].Rows")[$("[New Repeater 2].[Row index]")].url
- This sets the image URL using the second Data Provider and the repeater's row-index.
Result

Single or fixed number of image attachments
If you know there will only be a single image attachment, you should make sure to use the Attachment column type. Then you do not need to add a data provider and repeater for the attachment column. You will have access to the image bindings.
For a fixed number of attachments, simply adjust the index in the URL for each image component. This was shown in the above example
Displaying images from an S3 bucket
You may wish to store your image files in an external S3 bucket instead of the built-in MinIO bucket.
Data
Upload your images to your S3 bucket. You will need to allow public access to the images in AWS:
Next add your S3 Datasource with a simple Read query to list all of the files in the bucket.

Design
Add a Repeater Block with the Read query as its datasource. Nest your image components, using the following URL binding: https://<bucket-name>.s3.us-west-1.amazonaws.com/{{ New Repeater block.Read.Key }}

Image carousel
There is no built-in slideshow component, however there is a tutorial here for building one.
Background image
Add the background image component. This component can take children, which will appear in front of the background.

Adding the background image component
Provide a valid URL as the image source. The Position property can also be edited to offset the background image.

Updated 3 days ago