View source
<?php
namespace Drupal\image_effects\Plugin\ImageEffect;
use Drupal\Core\Image\ImageInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\image\ConfigurableImageEffectBase;
use Drupal\image_effects\Plugin\ImageEffectsPluginBaseInterface;
use Psr\Log\LoggerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Core\Image\ImageFactory;
class BackgroundImageEffect extends ConfigurableImageEffectBase implements ContainerFactoryPluginInterface {
protected $imageFactory;
protected $imageSelector;
public function __construct(array $configuration, $plugin_id, array $plugin_definition, LoggerInterface $logger, ImageFactory $image_factory, ImageEffectsPluginBaseInterface $image_selector) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $logger);
$this->imageFactory = $image_factory;
$this->imageSelector = $image_selector;
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('logger.factory')
->get('image'), $container
->get('image.factory'), $container
->get('plugin.manager.image_effects.image_selector')
->getPlugin());
}
public function defaultConfiguration() {
return [
'placement' => 'center-center',
'x_offset' => 0,
'y_offset' => 0,
'opacity' => 100,
'background_image' => '',
] + parent::defaultConfiguration();
}
public function getSummary() {
$summary = [
'#theme' => 'image_effects_background_summary',
'#data' => $this->configuration,
];
$summary += parent::getSummary();
return $summary;
}
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$options = [
'#title' => $this
->t('Background image'),
'#description' => $this
->t('Image to use for background.'),
'#default_value' => $this->configuration['background_image'],
];
$form['background_image'] = $this->imageSelector
->selectionElement($options);
$form['placement'] = [
'#type' => 'radios',
'#title' => $this
->t('Placement'),
'#options' => [
'left-top' => $this
->t('Top left'),
'center-top' => $this
->t('Top center'),
'right-top' => $this
->t('Top right'),
'left-center' => $this
->t('Center left'),
'center-center' => $this
->t('Center'),
'right-center' => $this
->t('Center right'),
'left-bottom' => $this
->t('Bottom left'),
'center-bottom' => $this
->t('Bottom center'),
'right-bottom' => $this
->t('Bottom right'),
],
'#theme' => 'image_anchor',
'#default_value' => $this->configuration['placement'],
'#description' => $this
->t('Position of the source image on the background image.'),
];
$form['x_offset'] = [
'#type' => 'number',
'#title' => $this
->t('Horizontal offset'),
'#field_suffix' => 'px',
'#description' => $this
->t('Additional horizontal offset from placement.'),
'#default_value' => $this->configuration['x_offset'],
'#maxlength' => 4,
'#size' => 4,
];
$form['y_offset'] = [
'#type' => 'number',
'#title' => $this
->t('Vertical offset'),
'#field_suffix' => 'px',
'#description' => $this
->t('Additional vertical offset from placement.'),
'#default_value' => $this->configuration['y_offset'],
'#maxlength' => 4,
'#size' => 4,
];
$form['opacity'] = [
'#type' => 'number',
'#title' => $this
->t('Opacity'),
'#field_suffix' => '%',
'#description' => $this
->t('Opacity of the source image when overlaid on the background image, in percentage. 0% means fully transparent, 100% fully opaque.'),
'#default_value' => $this->configuration['opacity'],
'#min' => 0,
'#max' => 100,
'#maxlength' => 3,
'#size' => 3,
];
return $form;
}
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
parent::submitConfigurationForm($form, $form_state);
$this->configuration['placement'] = $form_state
->getValue('placement');
$this->configuration['x_offset'] = $form_state
->getValue('x_offset');
$this->configuration['y_offset'] = $form_state
->getValue('y_offset');
$this->configuration['opacity'] = $form_state
->getValue('opacity');
$this->configuration['background_image'] = $form_state
->getValue('background_image');
$background_image = $this->imageFactory
->get($this->configuration['background_image']);
$this->configuration['background_image_width'] = $background_image
->getWidth();
$this->configuration['background_image_height'] = $background_image
->getHeight();
}
public function applyEffect(ImageInterface $image) {
$background_image = $this->imageFactory
->get($this->configuration['background_image']);
if (!$background_image
->isValid()) {
$this->logger
->error('Image background failed using the %toolkit toolkit on %path', [
'%toolkit' => $image
->getToolkitId(),
'%path' => $this->configuration['background_image'],
]);
return FALSE;
}
list($x, $y) = explode('-', $this->configuration['placement']);
$x_pos = image_filter_keyword($x, $background_image
->getWidth(), $image
->getWidth());
$y_pos = image_filter_keyword($y, $background_image
->getHeight(), $image
->getHeight());
return $image
->apply('background', [
'x_offset' => $x_pos + $this->configuration['x_offset'],
'y_offset' => $y_pos + $this->configuration['y_offset'],
'opacity' => $this->configuration['opacity'],
'background_image' => $background_image,
]);
}
public function transformDimensions(array &$dimensions, $uri) {
$dimensions['width'] = $this->configuration['background_image_width'];
$dimensions['height'] = $this->configuration['background_image_height'];
}
}