You are here

public function ImageStyleInterface::buildUri in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/image/src/ImageStyleInterface.php \Drupal\image\ImageStyleInterface::buildUri()
  2. 10 core/modules/image/src/ImageStyleInterface.php \Drupal\image\ImageStyleInterface::buildUri()

Returns the URI of this image when using this style.

The path returned by this function may not exist. The default generation method only creates images when they are requested by a user's browser. Modules may implement this method to decide where to place derivatives.

Parameters

string $uri: The URI or path to the original image.

Return value

string The URI to the image derivative for this style.

1 method overrides ImageStyleInterface::buildUri()
ImageStyle::buildUri in core/modules/image/src/Entity/ImageStyle.php
Returns the URI of this image when using this style.

File

core/modules/image/src/ImageStyleInterface.php, line 44

Class

ImageStyleInterface
Provides an interface defining an image style entity.

Namespace

Drupal\image

Code

public function buildUri($uri);