class AutoAspectEffect in Thunder 6.2.x
Same name and namespace in other branches
- 8.5 modules/thunder_media/src/Plugin/ImageEffect/AutoAspectEffect.php \Drupal\thunder_media\Plugin\ImageEffect\AutoAspectEffect
- 8.2 modules/thunder_media/src/Plugin/ImageEffect/AutoAspectEffect.php \Drupal\thunder_media\Plugin\ImageEffect\AutoAspectEffect
- 8.3 modules/thunder_media/src/Plugin/ImageEffect/AutoAspectEffect.php \Drupal\thunder_media\Plugin\ImageEffect\AutoAspectEffect
- 8.4 modules/thunder_media/src/Plugin/ImageEffect/AutoAspectEffect.php \Drupal\thunder_media\Plugin\ImageEffect\AutoAspectEffect
- 6.0.x modules/thunder_media/src/Plugin/ImageEffect/AutoAspectEffect.php \Drupal\thunder_media\Plugin\ImageEffect\AutoAspectEffect
- 6.1.x modules/thunder_media/src/Plugin/ImageEffect/AutoAspectEffect.php \Drupal\thunder_media\Plugin\ImageEffect\AutoAspectEffect
Resizes an image resource.
Plugin annotation
@ImageEffect(
id = "thunder_media_auto_aspect",
label = @Translation("Auto Aspect"),
description = @Translation("Use different effects depending on whether the image is landscape of portrait shaped. This re-uses other preset definitions, and just chooses between them based on the rule.")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\image\ImageEffectBase implements ContainerFactoryPluginInterface, ImageEffectInterface
- class \Drupal\image\ConfigurableImageEffectBase implements ConfigurableImageEffectInterface
- class \Drupal\thunder_media\Plugin\ImageEffect\AutoAspectEffect
- class \Drupal\image\ConfigurableImageEffectBase implements ConfigurableImageEffectInterface
- class \Drupal\image\ImageEffectBase implements ContainerFactoryPluginInterface, ImageEffectInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of AutoAspectEffect
File
- modules/
thunder_media/ src/ Plugin/ ImageEffect/ AutoAspectEffect.php, line 20
Namespace
Drupal\thunder_media\Plugin\ImageEffectView source
class AutoAspectEffect extends ConfigurableImageEffectBase {
/**
* The entity type manager service.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* {@inheritdoc}
*/
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;
}
/**
* Set the entity type manager service.
*
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager
* The entity type manager service.
*/
protected function setEntityTypeManager(EntityTypeManagerInterface $entityTypeManager) {
$this->entityTypeManager = $entityTypeManager;
}
/**
* {@inheritdoc}
*/
public function applyEffect(ImageInterface $image) {
$ratio_adjustment = isset($this->configuration['ratio_adjustment']) ? floatval($this->configuration['ratio_adjustment']) : 1;
$aspect = $image
->getWidth() / $image
->getHeight();
// Calculate orientation: width / height * adjustment. If > 1, it's wide.
$style_name = $aspect * $ratio_adjustment > 1 ? $this->configuration['landscape'] : $this->configuration['portrait'];
if (empty($style_name)) {
// Do nothing. just return what we've got.
return TRUE;
}
/** @var \Drupal\image\ImageStyleInterface $style */
$style = $this->entityTypeManager
->getStorage('image_style')
->load($style_name);
if (empty($style)) {
// Required preset has gone missing?
return FALSE;
}
// Run the preset actions ourself.
foreach ($style
->getEffects() as $sub_effect) {
/** @var \Drupal\image\ImageEffectInterface $sub_effect */
$sub_effect
->applyEffect($image);
}
return TRUE;
}
/**
* {@inheritdoc}
*/
public function transformDimensions(array &$dimensions, $uri) {
if (!isset($dimensions['width']) || !isset($dimensions['height'])) {
// We cannot know which preset would be executed and thus cannot know the
// resulting dimensions, unless both styles return the same dimensions:
$landscape_dimensions = $portrait_dimensions = $dimensions;
/** @var \Drupal\image\ImageStyleInterface $landscape_style */
$landscape_style = $this->entityTypeManager
->getStorage('image_style')
->load($this->configuration['landscape']);
$landscape_style
->transformDimensions($landscape_dimensions, $uri);
/** @var \Drupal\image\ImageStyleInterface $portrait_style */
$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'];
/** @var \Drupal\image\ImageStyleInterface $style */
$style = $this->entityTypeManager
->getStorage('image_style')
->load($style_name);
$style
->transformDimensions($dimensions, $uri);
}
}
/**
* {@inheritdoc}
*/
public function getSummary() {
$summary = [
'#theme' => 'image_resize_summary',
'#data' => $this->configuration,
];
$summary += parent::getSummary();
return $summary;
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [
'landscape' => NULL,
'portrait' => NULL,
'ratio_adjustment' => 1,
];
}
/**
* {@inheritdoc}
*/
public function calculateDependencies() {
$dependencies = parent::calculateDependencies();
$image_style_storage = $this->entityTypeManager
->getStorage('image_style');
if ($landscape_style = $image_style_storage
->load($this->configuration['landscape'])) {
/** @var \Drupal\image\ImageStyleInterface $landscape_style */
$dependencies[$landscape_style
->getConfigDependencyKey()][] = $landscape_style
->getConfigDependencyName();
}
if ($portrait_style = $image_style_storage
->load($this->configuration['portrait'])) {
/** @var \Drupal\image\ImageStyleInterface $portrait_style */
$dependencies[$portrait_style
->getConfigDependencyKey()][] = $portrait_style
->getConfigDependencyName();
}
return $dependencies;
}
/**
* {@inheritdoc}
*/
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;
}
/**
* {@inheritdoc}
*/
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;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AutoAspectEffect:: |
protected | property | The entity type manager service. | |
AutoAspectEffect:: |
public | function |
Applies an image effect to the image object. Overrides ImageEffectInterface:: |
|
AutoAspectEffect:: |
public | function |
Form constructor. Overrides PluginFormInterface:: |
|
AutoAspectEffect:: |
public | function |
Calculates dependencies for the configured plugin. Overrides ImageEffectBase:: |
|
AutoAspectEffect:: |
public static | function |
Creates an instance of the plugin. Overrides ImageEffectBase:: |
|
AutoAspectEffect:: |
public | function |
Gets default configuration for this plugin. Overrides ImageEffectBase:: |
|
AutoAspectEffect:: |
public | function |
Returns a render array summarizing the configuration of the image effect. Overrides ImageEffectBase:: |
|
AutoAspectEffect:: |
protected | function | Set the entity type manager service. | |
AutoAspectEffect:: |
public | function |
Form submission handler. Overrides ConfigurableImageEffectBase:: |
|
AutoAspectEffect:: |
public | function |
Determines the dimensions of the styled image. Overrides ImageEffectBase:: |
|
ConfigurableImageEffectBase:: |
public | function |
Form validation handler. Overrides PluginFormInterface:: |
2 |
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
ImageEffectBase:: |
protected | property | A logger instance. | |
ImageEffectBase:: |
protected | property | The image effect ID. | |
ImageEffectBase:: |
protected | property | The weight of the image effect. | |
ImageEffectBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurableInterface:: |
|
ImageEffectBase:: |
public | function |
Returns the extension of the derivative after applying this image effect. Overrides ImageEffectInterface:: |
1 |
ImageEffectBase:: |
public | function |
Returns the unique ID representing the image effect. Overrides ImageEffectInterface:: |
|
ImageEffectBase:: |
public | function |
Returns the weight of the image effect. Overrides ImageEffectInterface:: |
|
ImageEffectBase:: |
public | function |
Returns the image effect label. Overrides ImageEffectInterface:: |
|
ImageEffectBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: |
|
ImageEffectBase:: |
public | function |
Sets the weight for this image effect. Overrides ImageEffectInterface:: |
|
ImageEffectBase:: |
public | function |
Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: |
|
MessengerTrait:: |
protected | property | The messenger. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
2 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 4 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |