---
title: "Feature: #64286 - Added absolute url option to uri.image and image viewHelper"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-64286"
source: "Changelog/7.6/Feature-64286-AddedAbsoluteUrlOptionToUriimageAndImageViewHelper.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Feature: #64286 - Added absolute url option to uri.image and image viewHelper

See [forge#64286](https://forge.typo3.org/issues/64286)

## Description

The ImageViewhelper and Uri/ImageViewHelper got a new option `absolute`. With this option you are able to force
the ViewHelpers to output an absolute url.

### Examples:

```html
<code title="ImageViewHelper">
    <f:image image="{file}" width="400" height="375" absolute="1" />
</code>
<output>
    <img alt="alt set in image record" src="http://www.mydomain.com/fileadmin/_processed_/323223424.png" width="400" height="375" />
</output>

<code title="Uri/ImageViewHelper">
    <f:uri.image image="{file}" width="400" height="375" absolute="1" />
</code>
<output>
    http://www.mydomain.com/fileadmin/_processed_/323223424.png
</output>
```
