You are here

public static function ImagickConst::getSupportedExtensions in Imagick 8

2 calls to ImagickConst::getSupportedExtensions()
ConvertImageEffect::buildConfigurationForm in src/Plugin/ImageEffect/ConvertImageEffect.php
Form constructor.
ImagickToolkit::getSupportedExtensions in src/Plugin/ImageToolkit/ImagickToolkit.php
Returns a list of image file extensions supported by the toolkit.

File

src/ImagickConst.php, line 103

Class

ImagickConst

Namespace

Drupal\imagick

Code

public static function getSupportedExtensions() {
  return array_map('strtolower', Imagick::queryFormats());
}