---
title: "Important: #92659 - Change TCA configuration of imagewidth & imageheight"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:important-92659"
source: "Changelog/10.4.x/Important-92659-ChangeTCAConfigurationOfImagewidthImageheight.rst"
typo3-version: "10.4.x"
typo3-major: 10
type: "important"
issue: 92659
forge: "https://forge.typo3.org/issues/92659"
tags: ["Backend", "TCA", "ext:frontend"]
rendered: "2026-09-18T17:00:34+00:00"
---

# Important: #92659 - Change TCA configuration of imagewidth & imageheight {#important-92659}

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

## Description {#description}

The TCA configuration for `tt_content` fields `imagewidth` and `imageheight` has
been simplified. Therefore, the following options have been removed from these
fields:

```php
'max' => 4,
'range' => [
  'upper' => 1999
]
```

TYPO3 itself shouldn't limit the inputs of an editor by using a number which
was assumed to be large, 10 years ago.

If you rely on these options, please provide it in your site package by defining
it in `Configuration/TCA/Overrides/tt_content.php`:

```php
$GLOBALS['TCA']['tt_content']['columns']['imagewidth']['config']['max'] = 4;
$GLOBALS['TCA']['tt_content']['columns']['imagewidth']['config']['range']['upper'] = 1999;

$GLOBALS['TCA']['tt_content']['columns']['imageheight']['config']['max'] = 4;
$GLOBALS['TCA']['tt_content']['columns']['imageheight']['config']['range']['upper'] = 1999;
```
