function ResizeImageEffect::transformDimensions

Same name and namespace in other branches
  1. 11.x core/modules/image/src/Plugin/ImageEffect/ResizeImageEffect.php \Drupal\image\Plugin\ImageEffect\ResizeImageEffect::transformDimensions()

Overrides ImageEffectBase::transformDimensions

File

core/modules/image/src/Plugin/ImageEffect/ResizeImageEffect.php, line 34

Class

ResizeImageEffect
Resizes an image resource.

Namespace

Drupal\image\Plugin\ImageEffect

Code

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.