---
title: "Objects rendering content"
manual: "TypoScript Explained"
version: "main"
permalink: "https://docs.typo3.org/permalink/t3tsref:guide-cobjects-rendering-content@main"
source: "Guide/TypoScriptObjects/RenderingContent/Index.rst"
rendered: "2026-09-19T06:55:14+00:00"
---

# Objects rendering content {#guide-cobjects-rendering-content}

-   [IMAGE](https://docs.typo3.org/permalink/t3tsref:cobj-image@main) for the rendering of an image:

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

    ```typoscript
    lib.logo = IMAGE
    lib.logo {
      file = fileadmin/logo.gif
      file.width = 200
      stdWrap.typolink.parameter = 1
    }

    ```

    The result is an image based on file `logo.gif` with width of 200 pixels
    and a link to the page 1.
-   [TEXT](https://docs.typo3.org/permalink/t3tsref:cobj-text@main) is for the rendering of standard text or the
    content of fields:

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

    ```typoscript
    lib.slogan = TEXT
    lib.slogan.value = Inspiring people to share
    lib.slogan.wrap = <div class="highlight">|</div>

    ```
-   [FILES](https://docs.typo3.org/permalink/t3tsref:cobj-files@main) is used to retrieve information about one
    or more files and perform some rendering with it:

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

    ```typoscript
    lib.banner = FILES
    lib.banner {
      references {
        table = pages
        fieldName = media
        uid.data = page:uid
      }
      renderObj = IMAGE
      renderObj {
        file.import.data = file:current:uid
        file.treatIdAsReference = 1
        file.width = 500
        wrap = <div class="banner">|</div>
      }
    }

    ```

    This code will probably look pretty abstract to you right now. What it does
    is to reference the images that were related to a given page in the "media"
    field. It takes each of these images and resizes them to a maximum width of
    500 pixels. Each image is wrapped in a `<div>` tag.
-   [FLUIDTEMPLATE](https://docs.typo3.org/permalink/t3tsref:cobj-fluidtemplate@main) renders a template with the
    template engine Fluid with variables and data that you define - as previously
    discussed in the "[Insert content in a HTML template](https://docs.typo3.org/permalink/t3tsref:insert-content-in-a-template@main)" chapter.
