public ImageStyleInterface::buildUrl($path, $clean_urls = NULL)
Returns the URL of this image derivative for an original image path or URI.
Parameters
string $path: The path or URI to the original image.
mixed $clean_urls: (optional) Whether clean URLs are in use.
Return value
string The absolute URL where a style image can be downloaded, suitable for use in an <img> tag. Requesting the URL will cause the image to be created.
See also
\Drupal\image\Controller\ImageStyleDownloadController::deliver()
File
- core/modules/image/src/ImageStyleInterface.php, line 76
Class
- ImageStyleInterface
- Provides an interface defining an image style entity.
Namespace
Drupal\image
Code
public function buildUrl($path, $clean_urls = NULL);
Please login to continue.