public function ImagemagickToolkit::setProfiles in ImageMagick 8.2
Same name and namespace in other branches
- 8.3 src/Plugin/ImageToolkit/ImagemagickToolkit.php \Drupal\imagemagick\Plugin\ImageToolkit\ImagemagickToolkit::setProfiles()
Sets the source profiles.
Parameters
array $profiles: The image profiles.
Return value
$this
1 call to ImagemagickToolkit::setProfiles()
- ImagemagickToolkit::parseFileViaIdentify in src/
Plugin/ ImageToolkit/ ImagemagickToolkit.php - Parses the image file using the 'identify' executable.
File
- src/
Plugin/ ImageToolkit/ ImagemagickToolkit.php, line 818
Class
- ImagemagickToolkit
- Provides ImageMagick integration toolkit for image manipulation.
Namespace
Drupal\imagemagick\Plugin\ImageToolkitCode
public function setProfiles(array $profiles) {
$this->profiles = $profiles;
return $this;
}