Maintenance 

The extension ships with both a backend module and two CLI commands. The backend module is reachable via Admin Tools > Processed Images Maintenance (access restricted to users with the systemMaintainer role). The CLI commands are documented in Command-line tools.

Access control 

The backend module is registered under the Admin Tools parent with access: systemMaintainer. Only TYPO3 users in the systemMaintainer group (configured in LocalConfiguration.php) see it in the backend navigation.

Overview 

The Overview tab (MaintenanceController::indexAction) reports statistics about the processed-images directory:

  • File count and total disk usage.
  • Number of directories under /processed/.
  • The five largest files (name, size, last-modified timestamp).
  • File-type distribution (JPEG / PNG / GIF / WebP / AVIF / other).

The stats are computed on demand by recursively walking the filesystem; no metadata is persisted to the database.

System requirements check 

The System requirements tab (MaintenanceController::systemRequirementsAction) verifies all technical prerequisites needed for successful variant generation:

  • PHP version and loaded extensions (imagick, gd, fileinfo).
  • ImageMagick / GraphicsMagick capabilities reported by Imagick, in particular the ability to decode/encode WebP and AVIF. If Imagick is not installed, the page falls back to GD capabilities.
  • Intervention Image installed version and the driver selected at runtime.
  • TYPO3 version.
  • Availability of optional CLI helpers (magick, convert, identify, gm) -- none are strictly required but may be useful for debugging.

Each check is rendered as a pass/warning/fail row with a short explanation so an administrator can fix a misconfigured host in minutes.

Clear processed images 

The Clear processed images tab (MaintenanceController::clearProcessedImagesAction) recursively deletes every file under the configured processed-images directory. A flash message reports the number of files removed and the disk space freed.

Command-line maintenance 

Two console commands complement the backend module:

nr:image:optimize
Lossless (or optionally lossy) bulk compression of every PNG, GIF, and JPEG file in the FAL index.
nr:image:analyze
Fast heuristic report that estimates optimization potential without touching files or running external tools.