You are here

public function ImagemagickToolkit::setColorspace in ImageMagick 8.3

Same name and namespace in other branches
  1. 8.2 src/Plugin/ImageToolkit/ImagemagickToolkit.php \Drupal\imagemagick\Plugin\ImageToolkit\ImagemagickToolkit::setColorspace()

Sets the source colorspace.

Parameters

string|null $colorspace: The image colorspace.

Return value

$this

1 call to ImagemagickToolkit::setColorspace()
ImagemagickToolkit::parseFile in src/Plugin/ImageToolkit/ImagemagickToolkit.php
Determines if a file contains a valid image.

File

src/Plugin/ImageToolkit/ImagemagickToolkit.php, line 609

Class

ImagemagickToolkit
Provides ImageMagick integration toolkit for image manipulation.

Namespace

Drupal\imagemagick\Plugin\ImageToolkit

Code

public function setColorspace($colorspace) : ImagemagickToolkit {
  $this->colorspace = mb_strtoupper($colorspace);
  return $this;
}