View source
<?php
namespace Drupal\thunder_media\Plugin\ImageEffect;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Image\ImageInterface;
use Drupal\image\ConfigurableImageEffectBase;
use Symfony\Component\DependencyInjection\ContainerInterface;
class AutoAspectEffect extends ConfigurableImageEffectBase {
protected $entityTypeManager;
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
$style = parent::create($container, $configuration, $plugin_id, $plugin_definition);
$style
->setEntityTypeManager($container
->get('entity_type.manager'));
return $style;
}
protected function setEntityTypeManager(EntityTypeManagerInterface $entityTypeManager) {
$this->entityTypeManager = $entityTypeManager;
}
public function applyEffect(ImageInterface $image) {
$ratio_adjustment = isset($this->configuration['ratio_adjustment']) ? floatval($this->configuration['ratio_adjustment']) : 1;
$aspect = $image
->getWidth() / $image
->getHeight();
$style_name = $aspect * $ratio_adjustment > 1 ? $this->configuration['landscape'] : $this->configuration['portrait'];
if (empty($style_name)) {
return TRUE;
}
$style = $this->entityTypeManager
->getStorage('image_style')
->load($style_name);
if (empty($style)) {
return FALSE;
}
foreach ($style
->getEffects() as $sub_effect) {
$sub_effect
->applyEffect($image);
}
return TRUE;
}
public function transformDimensions(array &$dimensions, $uri) {
if (!isset($dimensions['width']) || !isset($dimensions['height'])) {
$landscape_dimensions = $portrait_dimensions = $dimensions;
$landscape_style = $this->entityTypeManager
->getStorage('image_style')
->load($this->configuration['landscape']);
$landscape_style
->transformDimensions($landscape_dimensions, $uri);
$portrait_style = $this->entityTypeManager
->getStorage('image_style')
->load($this->configuration['portrait']);
$portrait_style
->transformDimensions($portrait_dimensions, $uri);
if ($landscape_dimensions == $portrait_dimensions) {
$dimensions = $landscape_dimensions;
}
else {
$dimensions['width'] = $dimensions['height'] = NULL;
}
}
else {
$ratio_adjustment = isset($this->configuration['ratio_adjustment']) ? floatval($this->configuration['ratio_adjustment']) : 1;
$aspect = $dimensions['width'] / $dimensions['height'];
$style_name = $aspect * $ratio_adjustment > 1 ? $this->configuration['landscape'] : $this->configuration['portrait'];
$style = $this->entityTypeManager
->getStorage('image_style')
->load($style_name);
$style
->transformDimensions($dimensions, $uri);
}
}
public function getSummary() {
$summary = [
'#theme' => 'image_resize_summary',
'#data' => $this->configuration,
];
$summary += parent::getSummary();
return $summary;
}
public function defaultConfiguration() {
return [
'landscape' => NULL,
'portrait' => NULL,
'ratio_adjustment' => 1,
];
}
public function calculateDependencies() {
$dependencies = parent::calculateDependencies();
$image_style_storage = $this->entityTypeManager
->getStorage('image_style');
if ($landscape_style = $image_style_storage
->load($this->configuration['landscape'])) {
$dependencies[$landscape_style
->getConfigDependencyKey()][] = $landscape_style
->getConfigDependencyName();
}
if ($portrait_style = $image_style_storage
->load($this->configuration['portrait'])) {
$dependencies[$portrait_style
->getConfigDependencyKey()][] = $portrait_style
->getConfigDependencyName();
}
return $dependencies;
}
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$image_styles = image_style_options(FALSE);
$form['landscape'] = [
'#type' => 'select',
'#title' => $this
->t('Landscape image style'),
'#options' => $image_styles,
'#default_value' => $this->configuration['landscape'],
'#description' => $this
->t('Select the image style for landscape images'),
'#required' => TRUE,
];
$form['portrait'] = [
'#type' => 'select',
'#title' => $this
->t('Portrait'),
'#options' => $image_styles,
'#default_value' => $this->configuration['portrait'],
'#description' => $this
->t('Select the image style for portrait images'),
'#required' => TRUE,
];
return $form;
}
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
parent::submitConfigurationForm($form, $form_state);
$this->configuration['landscape'] = $form_state
->getValue('landscape');
$this->configuration['portrait'] = $form_state
->getValue('portrait');
$this->configuration['ratio_adjustment'] = 1;
}
}