TYPO3 CMS extension with fluid image view helpers to use thumbor as cropping service. It speeds up your thumbnail generation and adds some AI features like face recognition. \nTo use it, you have to start the service separately.
key | default | description |
---|---|---|
id | null | Identifier |
alt | null | Alternative text |
class | null | CSS class |
style | null | Inline css style |
lang | null | language |
title | null | Image title |
Include viehelper namespace
<html xmlns:tb="Vergissberlin\Thumbor\ViewHelpers" data-namespace-typo3-fluid="true">
[…]
</html>
Images from TYPO3 CMS data storage.
<tb:img uid="123" width="200" height="200" />
{tb:img(uid: 123)}
<tb:img.url uid="123" width="200" height="200" />
{tb:img.url(uid:123,width:200,height:200,alt:'Beautiful content')}
Images from external sources.
<tb:external src="https://picsum.photos/1200/800" width="200" height="200" alt="Beautiful content" />
{tb:external(src:'https://picsum.photos/200/300',width:200,height:200,alt:'Beautiful content')}