Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Image.php

function Image::__construct

Same name in this branch
  1. 11.1.x vendor/symfony/validator/Constraints/Image.php \Symfony\Component\Validator\Constraints\Image::__construct()
  2. 11.1.x vendor/symfony/dom-crawler/Image.php \Symfony\Component\DomCrawler\Image::__construct()
  3. 11.1.x core/modules/media/src/Plugin/media/Source/Image.php \Drupal\media\Plugin\media\Source\Image::__construct()

Constructs a new Image object.

Parameters

\Drupal\Core\ImageToolkit\ImageToolkitInterface $toolkit: The image toolkit.

string|null $source: (optional) The path to an image file, or NULL to construct the object with no image source.

File

core/lib/Drupal/Core/Image/Image.php, line 47

Class

Image
Defines an image object to represent an image file.

Namespace

Drupal\Core\Image

Code

public function __construct(ImageToolkitInterface $toolkit, $source = NULL) {
    $this->toolkit = $toolkit;
    if ($source) {
        $this->source = $source;
        $this->getToolkit()
            ->setSource($this->source);
        // Defer image file validity check to the toolkit.
        if ($this->getToolkit()
            ->parseFile()) {
            $this->fileSize = filesize($this->source);
        }
    }
}
RSS feed
Powered by Drupal