public function SetCanvasImageEffect::transformDimensions in Image Effects 8.3
Same name and namespace in other branches
- 8 src/Plugin/ImageEffect/SetCanvasImageEffect.php \Drupal\image_effects\Plugin\ImageEffect\SetCanvasImageEffect::transformDimensions()
- 8.2 src/Plugin/ImageEffect/SetCanvasImageEffect.php \Drupal\image_effects\Plugin\ImageEffect\SetCanvasImageEffect::transformDimensions()
Determines the dimensions of the styled image.
Parameters
array &$dimensions: Dimensions to be modified - an array with the following keys:
- width: the width in pixels, or NULL if unknown
- height: the height in pixels, or NULL if unknown
When either of the dimensions are NULL, the corresponding HTML attribute will be omitted when an image style using this image effect is used.
string $uri: Original image file URI. It is passed in to allow an effect to optionally use this information to retrieve additional image metadata to determine dimensions of the styled image. ImageEffectInterface::transformDimensions key objective is to calculate styled image dimensions without performing actual image operations, so be aware that performing IO on the URI may lead to decrease in performance.
Overrides ImageEffectBase::transformDimensions
File
- src/
Plugin/ ImageEffect/ SetCanvasImageEffect.php, line 242
Class
- SetCanvasImageEffect
- Class SetCanvasImageEffect.
Namespace
Drupal\image_effects\Plugin\ImageEffectCode
public function transformDimensions(array &$dimensions, $uri) {
if ($dimensions['width'] && $dimensions['height']) {
$d = $this
->getDimensions($dimensions['width'], $dimensions['height']);
$dimensions['width'] = $d['width'];
$dimensions['height'] = $d['height'];
}
}