---
title: "imgResource"
manual: "TypoScript Explained"
version: "13.4"
permalink: "https://docs.typo3.org/permalink/t3tsref:guide-imgresource@13.4"
source: "Guide/TypoScriptFunctions/ImgResource/Index.rst"
rendered: "2026-09-18T10:44:33+00:00"
---

# imgResource {#guide-imgresource}

The [imgResource](https://docs.typo3.org/permalink/t3tsref:imgresource@13.4) function relates to modifications of
pictures. Its main usage is the property `file` of the
[IMAGE](https://docs.typo3.org/permalink/t3tsref:cobj-image@13.4) object.

This, for example, allows an image to be resized:

**EXT:site_package/Configuration/Sets/Main/setup.typoscript**

```typoscript
temp.myImage = IMAGE
temp.myImage {
  file = toplogo.gif
  file.width = 200
  file.height = 300
}

```

It is also possible to set minimum or maximum dimensions:

**EXT:site_package/Configuration/Sets/Main/setup.typoscript**

```typoscript
temp.myImage = IMAGE
temp.myImage {
  file = toplogo.gif

  # maximum size
  file.maxW = 200
  file.maxH = 300

  # minimum size
  file.minW = 100
  file.minH = 120
}

```

`imgResource` also provides direct access to
ImageMagick/GraphicsMagick features:

**EXT:site_package/Configuration/Sets/Main/setup.typoscript**

```typoscript
temp.myImage = IMAGE
temp.myImage {
  file = toplogo.gif
  file.params = -rotate 90
}

```
