PHP Interface Neos\Media\Domain\Model\ThumbnailSupportInterface

Afficher le fichier Open project: neos/neos-development-collection

Méthodes publiques

Méthode Description
addThumbnail ( Thumbnail $thumbnail ) : mixed Adds a thumbnail which was generated by the ThumbnailService.
getThumbnail ( integer $maximumWidth = null, integer $maximumHeight = null, string $ratioMode = ImageInterface::RATIOMODE_INSET, boolean $allowUpScaling = null ) : Thumbnail Returns a thumbnail of this model

Method Details

addThumbnail() public méthode

Adds a thumbnail which was generated by the ThumbnailService.
See also: getThumbnail()
public addThumbnail ( Thumbnail $thumbnail ) : mixed
$thumbnail Thumbnail
Résultat mixed

getThumbnail() public méthode

If the maximum width / height is not specified or exceeds the original asset's dimensions, the width / height of the original asset is used.
public getThumbnail ( integer $maximumWidth = null, integer $maximumHeight = null, string $ratioMode = ImageInterface::RATIOMODE_INSET, boolean $allowUpScaling = null ) : Thumbnail
$maximumWidth integer The thumbnail's maximum width in pixels
$maximumHeight integer The thumbnail's maximum height in pixels
$ratioMode string Whether the resulting image should be cropped if both edge's sizes are supplied that would hurt the aspect ratio
$allowUpScaling boolean Whether the resulting image should be upscaled
Résultat Thumbnail