You are here

public function BackgroundImageManagerInterface::colorSampleImage in Background Image 8

Same name and namespace in other branches
  1. 2.x src/BackgroundImageManagerInterface.php \Drupal\background_image\BackgroundImageManagerInterface::colorSampleImage()
  2. 2.0.x src/BackgroundImageManagerInterface.php \Drupal\background_image\BackgroundImageManagerInterface::colorSampleImage()

Samples the average color of an image file.

Parameters

\Drupal\Core\Image\ImageInterface $image: An Image object.

string $default: The default lowercase simple color (HEX) representation to use if unable to sample the image.

Return value

string The lowercase simple color (HEX) representation of the sampled image.

1 method overrides BackgroundImageManagerInterface::colorSampleImage()
BackgroundImageManager::colorSampleImage in src/BackgroundImageManager.php
Samples the average color of an image file.

File

src/BackgroundImageManagerInterface.php, line 70

Class

BackgroundImageManagerInterface

Namespace

Drupal\background_image

Code

public function colorSampleImage(ImageInterface $image, $default = NULL);