:navigation-title: uri.image .. include:: /Includes.rst.txt .. _typo3-fluid-uri-image: ==================================== Uri.image ViewHelper `` ==================================== .. typo3:viewhelper:: uri.image :source: ../../Global.json :display: tags,description,gitHubLink,arguments .. _typo3-fluid-uri-image-example: Examples ======== Default ------- :: Results in the following output within TYPO3 frontend: ``typo3conf/ext/myext/Resources/Public/typo3_logo.png`` and the following output inside TYPO3 backend: ``../typo3conf/ext/myext/Resources/Public/typo3_logo.png`` Image Object ------------ :: Results in the following output within TYPO3 frontend: ``fileadmin/images/image.png`` and the following output inside TYPO3 backend: ``fileadmin/images/image.png`` Inline notation --------------- :: {f:uri.image(src: 'EXT:myext/Resources/Public/typo3_logo.png', minWidth: 30, maxWidth: 40)} ``typo3temp/assets/images/[b4c0e7ed5c].png`` Depending on your TYPO3s encryption key. Non existing image ------------------ :: ``Could not get image resource for "NonExistingImage.png".`` Base 64 ======= When the :typo3:viewhelper-argument:`base64 ` argument is set to true, this ViewHelper returns a base 64 encoded version of the ressource. .. code-block:: html Will return the image encoded in base64: .. code-block:: html This can be particularly useful inside `FluidEmail` or to prevent unneeded HTTP calls.