image_filter_keyword example


class CropImageEffect extends ResizeImageEffect {

  /** * {@inheritdoc} */
  public function applyEffect(ImageInterface $image) {
    [$x$y] = explode('-', $this->configuration['anchor']);
    $x = image_filter_keyword($x$image->getWidth()$this->configuration['width']);
    $y = image_filter_keyword($y$image->getHeight()$this->configuration['height']);
    if (!$image->crop($x$y$this->configuration['width']$this->configuration['height'])) {
      $this->logger->error('Image crop failed using the %toolkit toolkit on %path (%mimetype, %dimensions)', ['%toolkit' => $image->getToolkitId(), '%path' => $image->getSource(), '%mimetype' => $image->getMimeType(), '%dimensions' => $image->getWidth() . 'x' . $image->getHeight()]);
      return FALSE;
    }
    return TRUE;
  }

  /** * {@inheritdoc} */
  
class ScaleAndCropImageEffect extends CropImageEffect {

  /** * {@inheritdoc} */
  public function applyEffect(ImageInterface $image) {
    $width = $this->configuration['width'];
    $height = $this->configuration['height'];
    $scale = max($width / $image->getWidth()$height / $image->getHeight());

    [$x$y] = explode('-', $this->configuration['anchor']);
    $x = image_filter_keyword($x$image->getWidth() * $scale$width);
    $y = image_filter_keyword($y$image->getHeight() * $scale$height);

    if (!$image->apply('scale_and_crop', ['x' => $x, 'y' => $y, 'width' => $width, 'height' => $height])) {
      $this->logger->error('Image scale and crop failed using the %toolkit toolkit on %path (%mimetype, %dimensions)', ['%toolkit' => $image->getToolkitId(), '%path' => $image->getSource(), '%mimetype' => $image->getMimeType(), '%dimensions' => $image->getWidth() . 'x' . $image->getHeight()]);
      return FALSE;
    }
    return TRUE;
  }

  /** * {@inheritdoc} */
Home | Imprint | This part of the site doesn't use cookies.