Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vergissberlin/typo3-thumbor
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.
https://github.com/vergissberlin/typo3-thumbor
php thumbnails thumbor typo3-cms-extension
Last synced: 10 days ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/vergissberlin/typo3-thumbor
- Owner: vergissberlin
- License: gpl-2.0
- Created: 2020-05-23T04:57:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-01-31T05:53:06.000Z (9 months ago)
- Last Synced: 2024-10-09T19:41:14.072Z (28 days ago)
- Topics: php, thumbnails, thumbor, typo3-cms-extension
- Language: PHP
- Size: 29.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# thumbor for TYPO3 CMS
[![Latest Stable Version](https://poser.pugx.org/vergissberlin/typo3-thumbor/v)](//packagist.org/packages/vergissberlin/typo3-thumbor) [![Total Downloads](https://poser.pugx.org/vergissberlin/typo3-thumbor/downloads)](//packagist.org/packages/vergissberlin/typo3-thumbor) [![Latest Unstable Version](https://poser.pugx.org/vergissberlin/typo3-thumbor/v/unstable)](//packagist.org/packages/vergissberlin/typo3-thumbor) [![License](https://poser.pugx.org/vergissberlin/typo3-thumbor/license)](//packagist.org/packages/vergissberlin/typo3-thumbor)
[![StyleCI](https://styleci.io/repos/266265891/shield?branch=master)](https://styleci.io/repos/266265891/)
[![Latest Stable Version](https://poser.pugx.org/vergissberlin/typo3-thumbor/v/stable)](https://packagist.org/packages/vergissberlin/typo3-thumbor)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.
## Attributes
### tb:img
| 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 |## Usage
Include viehelper namespace
```html
[…]
```
### Internal images
Images from TYPO3 CMS data storage.
#### TAG
```html
```
```html
{tb:img(uid: 123)}
```#### URL
```html
```
```html
{tb:img.url(uid:123,width:200,height:200,alt:'Beautiful content')}
```### External images
Images from external sources.
#### Tag
```html
```
```html
{tb:external(src:'https://picsum.photos/200/300',width:200,height:200,alt:'Beautiful content')}
```