public static function ImagickToolkit::getSupportedExtensions in Imagick 8
Returns a list of image file extensions supported by the toolkit.
Return value
array An array of supported image file extensions (e.g. png/jpeg/gif).
Overrides ImageToolkitInterface::getSupportedExtensions
File
- src/
Plugin/ ImageToolkit/ ImagickToolkit.php, line 403
Class
- ImagickToolkit
- Defines the Imagick toolkit for image manipulation within Drupal.
Namespace
Drupal\imagick\Plugin\ImageToolkitCode
public static function getSupportedExtensions() {
return ImagickConst::getSupportedExtensions();
}