PHP Interface Neos\Media\Domain\Model\ThumbnailSupportInterface

Show file Open project: neos/neos-development-collection

Public Methods

Method 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 method

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

getThumbnail() public method

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
return Thumbnail