function ResizeImageEffect::transformDimensions
Same name in other branches
- 8.9.x core/modules/image/src/Plugin/ImageEffect/ResizeImageEffect.php \Drupal\image\Plugin\ImageEffect\ResizeImageEffect::transformDimensions()
- 10 core/modules/image/src/Plugin/ImageEffect/ResizeImageEffect.php \Drupal\image\Plugin\ImageEffect\ResizeImageEffect::transformDimensions()
- 11.x core/modules/image/src/Plugin/ImageEffect/ResizeImageEffect.php \Drupal\image\Plugin\ImageEffect\ResizeImageEffect::transformDimensions()
Overrides ImageEffectBase::transformDimensions
1 method overrides ResizeImageEffect::transformDimensions()
- ScaleImageEffect::transformDimensions in core/
modules/ image/ src/ Plugin/ ImageEffect/ ScaleImageEffect.php - Determines the dimensions of the styled image.
File
-
core/
modules/ image/ src/ Plugin/ ImageEffect/ ResizeImageEffect.php, line 34
Class
- ResizeImageEffect
- Resizes an image resource.
Namespace
Drupal\image\Plugin\ImageEffectCode
public function transformDimensions(array &$dimensions, $uri) {
// The new image will have the exact dimensions defined for the effect.
$dimensions['width'] = $this->configuration['width'];
$dimensions['height'] = $this->configuration['height'];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.